Browse Source

Version 1.0

pull/1/head
exoticswingset 4 years ago
parent
commit
53caded3a0
No account linked to committer's email address
4 changed files with 32 additions and 0 deletions
  1. +1
    -0
      DualSBAdoption.plist
  2. +10
    -0
      Makefile
  3. +12
    -0
      Tweak.x
  4. +9
    -0
      control

+ 1
- 0
DualSBAdoption.plist View File

@@ -0,0 +1 @@
{ Filter = { Bundles = ( "com.apple.springboard" ); }; }

+ 10
- 0
Makefile View 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
- 0
Tweak.x View 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

+ 9
- 0
control View File

@@ -0,0 +1,9 @@
Package: com.exoticswingset.dualsbadoption
Name: DualSBAdoption
Depends: mobilesubstrate
Version: 1.0
Architecture: iphoneos-arm
Description: An awesome MobileSubstrate tweak!
Maintainer: ExoticSwingset
Author: ExoticSwingset
Section: Tweaks

Loading…
Cancel
Save