mirror of
https://github.com/exoticswingset/DualSBAdoption.git
synced 2025-07-01 14:16:45 +00:00
Version 1.0
This commit is contained in:
1
DualSBAdoption.plist
Normal file
1
DualSBAdoption.plist
Normal file
@ -0,0 +1 @@
|
|||||||
|
{ Filter = { Bundles = ( "com.apple.springboard" ); }; }
|
10
Makefile
Normal file
10
Makefile
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
INSTALL_TARGET_PROCESSES = SpringBoard
|
||||||
|
ARCHS = arm64 arm64e
|
||||||
|
include ~/theos/makefiles/common.mk
|
||||||
|
|
||||||
|
TWEAK_NAME = DualSBAdoption
|
||||||
|
|
||||||
|
TransStatus_FILES = Tweak.x
|
||||||
|
TransStatus_CFLAGS = -fobjc-arc
|
||||||
|
|
||||||
|
include ~/theos/makefiles/tweak.mk
|
12
Tweak.x
Normal file
12
Tweak.x
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
%hook UIStatusBar_Modern
|
||||||
|
-(void)setAlpha:(CGFloat)arg1 {
|
||||||
|
%orig(0.0); // makes status bar transparent on lock screen
|
||||||
|
}
|
||||||
|
|
||||||
|
%end
|
||||||
|
|
||||||
|
%hook SBDashBoardTeachableMomentsContainerView
|
||||||
|
-(void)_addControlCenterTutors {
|
||||||
|
// Nothing here to prevent the cc grabber from showing
|
||||||
|
}
|
||||||
|
%end
|
Reference in New Issue
Block a user