1
0
mirror of https://github.com/Burrit0z/kai synced 2025-07-01 21:46:48 +00:00

alpha 0.1.0

This commit is contained in:
Burrit0z
2020-05-20 13:44:20 -04:00
parent 4a9d95086d
commit a8913e2edc
8 changed files with 571 additions and 75 deletions

View File

@ -35,7 +35,7 @@ NSBundle *tweakBundle;
-(void)viewDidLoad {
[super viewDidLoad];
UIBarButtonItem *applyButton = [[UIBarButtonItem alloc] initWithTitle:@"Respring" style:UIBarButtonItemStylePlain target:self action:@selector(respring:)];
UIBarButtonItem *applyButton = [[UIBarButtonItem alloc] initWithTitle:@"Apply" style:UIBarButtonItemStylePlain target:self action:@selector(respring:)];
self.navigationItem.rightBarButtonItem = applyButton;
self.navigationItem.titleView = [UIView new];
@ -67,26 +67,16 @@ NSBundle *tweakBundle;
}
-(void)respring:(id)sender {
CFNotificationCenterPostNotification(CFNotificationCenterGetDarwinNotifyCenter(), CFSTR("com.burritoz.kaiprefs/reload"), nil, nil, true);
tweakBundle = [NSBundle bundleWithPath:@"/Library/PreferenceBundles/MultiplaPrefs.bundle"];
UIAlertController* alert = [UIAlertController alertControllerWithTitle:@"Kai"
message:@"Your settings have been applied. You can now go back to your lockscreen (CoverSheet) to see the changes."
preferredStyle:UIAlertControllerStyleAlert];
UIAlertController* alert = [UIAlertController alertControllerWithTitle:@"Respring"
message:@"Are you sure you want to respring now?"
preferredStyle:UIAlertControllerStyleActionSheet];
UIAlertAction* defaultAction = [UIAlertAction actionWithTitle:@"No" style:UIAlertActionStyleCancel
UIAlertAction* defaultAction = [UIAlertAction actionWithTitle:@"Amazing!" style:UIAlertActionStyleDefault
handler:^(UIAlertAction * action) {}];
UIAlertAction* yes = [UIAlertAction actionWithTitle:@"Yes" style:UIAlertActionStyleDestructive
handler:^(UIAlertAction * action) {
NSTask *t = [[NSTask alloc] init];
[t setLaunchPath:@"usr/bin/killall"];
[t setArguments:[NSArray arrayWithObjects:@"backboardd", nil]];
[t launch];
}];
[alert addAction:defaultAction];
[alert addAction:yes];
[self presentViewController:alert animated:YES completion:nil];
}

View File

@ -28,6 +28,18 @@
<key>cell</key>
<string>PSGroupCell</string>
</dict>
<dict>
<key>cell</key>
<string>PSSwitchCell</string>
<key>default</key>
<false/>
<key>defaults</key>
<string>com.burritoz.kaiprefs</string>
<key>key</key>
<string>showAll</string>
<key>label</key>
<string>Show all devices</string>
</dict>
<dict>
<key>cell</key>
<string>PSSwitchCell</string>
@ -52,6 +64,74 @@
<key>label</key>
<string>Hide Percent Label</string>
</dict>
<dict>
<key>cell</key>
<string>PSSwitchCell</string>
<key>default</key>
<false/>
<key>defaults</key>
<string>com.burritoz.kaiprefs</string>
<key>key</key>
<string>hideDeviceLabel</string>
<key>label</key>
<string>Hide Device Name Label</string>
</dict>
<dict>
<key>cell</key>
<string>PSGroupCell</string>
<key>label</key>
<string>Banner Style</string>
</dict>
<dict>
<key>cell</key>
<string>PSSegmentCell</string>
<key>defaults</key>
<string>com.burritoz.kaiprefs</string>
<key>default</key>
<string>1</string>
<key>key</key>
<string>bannerStyle</string>
<key>validValues</key>
<array>
<string>1</string>
<string>2</string>
<string>3</string>
</array>
<key>validTitles</key>
<array>
<string>Automatic</string>
<string>Dark</string>
<string>Light</string>
</array>
</dict>
<dict>
<key>cell</key>
<string>PSGroupCell</string>
<key>label</key>
<string>Banner Alignment</string>
</dict>
<dict>
<key>cell</key>
<string>PSSegmentCell</string>
<key>defaults</key>
<string>com.burritoz.kaiprefs</string>
<key>default</key>
<string>2</string>
<key>key</key>
<string>bannerAlign</string>
<key>validValues</key>
<array>
<string>1</string>
<string>2</string>
<string>3</string>
</array>
<key>validTitles</key>
<array>
<string>Left</string>
<string>Center</string>
<string>Right</string>
</array>
</dict>
<dict>
<key>cell</key>
<string>PSGroupCell</string>
@ -66,7 +146,7 @@
<key>min</key>
<real>20</real>
<key>max</key>
<real>200</real>
<real>400</real>
<key>isSegmented</key>
<false/>
<key>showValue</key>
@ -76,6 +156,30 @@
<key>key</key>
<string>bannerHeight</string>
</dict>
<dict>
<key>cell</key>
<string>PSGroupCell</string>
<key>label</key>
<string>Banner Width Adjustment (0)</string>
</dict>
<dict>
<key>default</key>
<real>0</real>
<key>cell</key>
<string>PSSliderCell</string>
<key>min</key>
<real>-400</real>
<key>max</key>
<real>400</real>
<key>isSegmented</key>
<false/>
<key>showValue</key>
<true/>
<key>defaults</key>
<string>com.burritoz.kaiprefs</string>
<key>key</key>
<string>bannerWidthFactor</string>
</dict>
<dict>
<key>cell</key>
<string>PSGroupCell</string>
@ -88,9 +192,9 @@
<key>cell</key>
<string>PSSliderCell</string>
<key>min</key>
<real>0.0</real>
<real>-100.0</real>
<key>max</key>
<real>100</real>
<real>300</real>
<key>isSegmented</key>
<false/>
<key>showValue</key>
@ -136,7 +240,7 @@
<key>cell</key>
<string>PSSliderCell</string>
<key>min</key>
<real>0.1</real>
<real>0.0</real>
<key>max</key>
<real>100</real>
<key>isSegmented</key>

181
kaiprefs/build.ninja Normal file
View File

@ -0,0 +1,181 @@
name = kaiPrefs
lowername = kaiprefs
# Build file for kaiPrefs
# Generated at 05/20/20 13:44:10
pdirname = .dragon
location = /Library/PreferenceBundles/$name.bundle/
resource_dir = Resources
target = $pdirname/_$location$name
stage2 =
builddir = $pdirname/build
objdir = $pdirname/obj
signdir = $pdirname/sign
signtarget = $signdir/$target.unsigned
symtarget = $signdir/$target.unsym
dragondir = $$DRAGONBUILD
pwd = .
sysroot = $dragondir/sdks/iPhoneOS.sdk
fwSearch = -F$sysroot/System/Library/Frameworks $
-F$sysroot/System/Library/PrivateFrameworks -F$dragondir/frameworks
libSearch = -L$dragondir/lib -L.
cc = clang++
ccpp = clang++
ld = clang++
ldid = ldid
dsym = dsymutil
logos = $dragondir/bin/logos.pl
plutil = plutil
stage = mkdir -p .dragon/_/Library/PreferenceLoader/Preferences/ && cp $
entry.plist .dragon/_/Library/PreferenceLoader/Preferences/$name.plist
targetios = 10.0
frameworks = -framework Preferences -framework CoreFoundation -framework $
Foundation -framework UIKit -framework CoreGraphics -framework $
QuartzCore -framework CoreImage -framework AudioToolbox
libs = -lobjc -lc++
arc = -fobjc-arc
btarg = -DTARGET_IPHONE=1
warnings = -Wall
optim = -O0
debug = -fcolor-diagnostics
header_includes =
cinclude = -I$dragondir/include -I$dragondir/vendor/include $
-I$dragondir/include/_fallback -I$DRAGONBUILD/headers/ -I$pwd
usrCflags =
usrLDflags =
usrLDIDFlags = -S
lopt = -dynamiclib -ggdb -Xlinker -segalign -Xlinker 4000
typeldflags = -install_name $location$name
cflags = $cinclude -fmodules -fcxx-modules -fmodule-name=$name $
-fbuild-session-file=.dragon/modules/ -fmodules-prune-after=345600 $
-fmodules-prune-interval=86400 $
-fmodules-validate-once-per-build-session $arc $fwSearch $
-miphoneos-version-min=$targetios -isysroot $sysroot $btarg $warnings $
$optim $debug $usrCflags $header_includes
lflags = $cflags $typeldflags $frameworks $libs $lopt $libSearch $usrLDflags
ldflags = $usrLDFlags
pool solo
depth = 1
rule prelogos
command = cat $in | python3 $$DRAGONBUILD/bin/prelogos.py > $out
description = Processing $in with Pre/Logos
rule logos
command = $logos $in > $out
description = Processing $in with Logos
rule compilearm64
command = $cc -arch arm64 $cflags -c $in -o $out
description = Compiling $in for arm64
rule compilexxarm64
command = $cxx -arch arm64 $cflags -c $in -o $out
description = Compiling $in for arm64
rule linkarm64
command = $ld -arch arm64 $lflags -o $out $in
description = Linking $name for arm64
rule compilearm64e
command = $cc -arch arm64e $cflags -c $in -o $out
description = Compiling $in for arm64e
rule compilexxarm64e
command = $cxx -arch arm64e $cflags -c $in -o $out
description = Compiling $in for arm64e
rule linkarm64e
command = $ld -arch arm64e $lflags -o $out $in
description = Linking $name for arm64e
rule compilearmv7
command = $cc -arch armv7 $cflags -c $in -o $out
description = Compiling $in for armv7
rule compilexxarmv7
command = $cxx -arch armv7 $cflags -c $in -o $out
description = Compiling $in for armv7
rule linkarmv7
command = $ld -arch armv7 $lflags -o $out $in
description = Linking $name for armv7
rule compilex86_64
command = $cc -arch x86_64 $cflags -c $in -o $out
description = Compiling $in for x86_64
rule compilexxx86_64
command = $cxx -arch x86_64 $cflags -c $in -o $out
description = Compiling $in for x86_64
rule linkx86_64
command = $ld -arch x86_64 $lflags -o $out $in
description = Linking $name for x86_64
rule lipo
command = lipo -create $in -output $out
description = Merging architectures
rule bundle
command = mkdir -p ".dragon/_$location/" && cp -r "$resource_dir/" $
".dragon/_$location" && cp $in $out
description = Copying Bundle Resources
pool = solo
rule plist
command = $plutil -convert binary1 $in -o $out
description = Converting $in
rule debug
command = $dsym "$in" 2&> /dev/null; cp $in $out
description = Generating Debug Symbols for $name
rule sign
command = $ldid $usrLDIDFlags $in && cp $in $target
description = Signing $name
rule stage
command = $stage $stage2
description = Running Stage for $name
build $builddir/arm64/KAIRootListController.m.o: compilearm64 $
KAIRootListController.m
build $builddir/$name.arm64: linkarm64 $
$builddir/arm64/KAIRootListController.m.o
build $builddir/arm64e/KAIRootListController.m.o: compilearm64e $
KAIRootListController.m
build $builddir/$name.arm64e: linkarm64e $
$builddir/arm64e/KAIRootListController.m.o
build $builddir/trash/bundles: bundle build.ninja
build $builddir/trash/stage: stage $target
build $symtarget: lipo $builddir/$name.arm64 $builddir/$name.arm64e
build $signtarget: debug $symtarget
build $target: sign $signtarget
default $target $builddir/trash/bundles $builddir/trash/stage