From f23f55e98a41b8f153a56088814fabc0e8473339 Mon Sep 17 00:00:00 2001 From: Viggo Lekdorf Date: Fri, 3 Jan 2020 04:47:41 +0100 Subject: [PATCH] yeet --- .theos/build_session | 0 Makefile | 13 +++++++++++++ QuickActionsNoBG.plist | 1 + README.md | 0 Tweak.x | 6 ++++++ control | 12 ++++++++++++ 6 files changed, 32 insertions(+) create mode 100644 .theos/build_session create mode 100644 Makefile create mode 100644 QuickActionsNoBG.plist create mode 100644 README.md create mode 100644 Tweak.x create mode 100644 control diff --git a/.theos/build_session b/.theos/build_session new file mode 100644 index 0000000..e69de29 diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d37afec --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +ARCHS = arm64 arm64e +TARGET = iphone:clang:11.2:11.2 + +INSTALL_TARGET_PROCESSES = SpringBoard + +include $(THEOS)/makefiles/common.mk + +TWEAK_NAME = QuickActionsNoBG + +QuickActionsNoBG_FILES = Tweak.x +QuickActionsNoBG_CFLAGS = -fobjc-arc + +include $(THEOS_MAKE_PATH)/tweak.mk diff --git a/QuickActionsNoBG.plist b/QuickActionsNoBG.plist new file mode 100644 index 0000000..10dc654 --- /dev/null +++ b/QuickActionsNoBG.plist @@ -0,0 +1 @@ +{ Filter = { Bundles = ( "com.apple.springboard" ); }; } diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/Tweak.x b/Tweak.x new file mode 100644 index 0000000..63b8780 --- /dev/null +++ b/Tweak.x @@ -0,0 +1,6 @@ +%hook UICoverSheetButton +- (id)_backgroundEffectsWithBrightness:(double)arg1 { + return 0; +} +%end + diff --git a/control b/control new file mode 100644 index 0000000..b6a800d --- /dev/null +++ b/control @@ -0,0 +1,12 @@ +Package: com.yaypixxo.quickactionsnobg +Name: QuickActionsNoBG +Depends: mobilesubstrate +Version: 1.0.0 +Architecture: iphoneos-arm +Description: Hide the background of the iPhone X 3D Touch lock screen buttons +Depiction: https://yaypixxo.com/depictions?p=com.yaypixxo.quickactionsnobg +SileoDepiction: https://yaypixxo.com/sileo/com.yaypixxo.quickactionsnobg +ModernDepiction: https://yaypixxo.com/sileo/com.yaypixxo.quickactionsnobg +Maintainer: YaYPIXXO +Author: YaYPIXXO +Section: Tweaks