diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..3f5103d --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +INSTALL_TARGET_PROCESSES = SpringBoard +ARCHS = armv7 armv7s arm64 arm64e +include ~/theos/makefiles/common.mk + +TWEAK_NAME = TruthfulDock + +TruthfulDock_FILES = Tweak.x +TruthfulDock_CFLAGS = -fobjc-arc + +include ~/theos/makefiles/tweak.mk diff --git a/TruthfulDock.plist b/TruthfulDock.plist new file mode 100644 index 0000000..10dc654 --- /dev/null +++ b/TruthfulDock.plist @@ -0,0 +1 @@ +{ Filter = { Bundles = ( "com.apple.springboard" ); }; } diff --git a/Tweak.x b/Tweak.x new file mode 100644 index 0000000..e9c432c --- /dev/null +++ b/Tweak.x @@ -0,0 +1,5 @@ +%hook SBDockView +-(void)setBackgroundAlpha:(double)arg1 { +%orig(0.0); +} +%end diff --git a/control b/control new file mode 100644 index 0000000..dbe9f24 --- /dev/null +++ b/control @@ -0,0 +1,9 @@ +Package: com.exoticswingset.truthfuldock +Name: TruthfulDock +Depends: mobilesubstrate +Version: 0.0.2 +Architecture: iphoneos-arm +Description: An awesome MobileSubstrate tweak! +Maintainer: ExoticSwingset +Author: ExoticSwingset +Section: Tweaks