├── obj ├── .stamp ├── blurSL.dylib └── Tweak.xm.893b3b13.o ├── theos ├── blurSL.plist ├── _ ├── Library │ └── MobileSubstrate │ │ └── DynamicLibraries │ │ ├── blurSL.plist │ │ └── blurSL.dylib └── DEBIAN │ └── control ├── debs ├── com.twodayslate.blursl_0.0.1-1_iphoneos-arm.deb └── com.twodayslate.blursl_0.0.1-2_iphoneos-arm.deb ├── Tweak.xm ├── control └── Makefile /obj/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theos: -------------------------------------------------------------------------------- 1 | /opt/theos -------------------------------------------------------------------------------- /blurSL.plist: -------------------------------------------------------------------------------- 1 | { Filter = { Bundles = ( "com.apple.springboard" ); }; } 2 | -------------------------------------------------------------------------------- /obj/blurSL.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/blurSL/master/obj/blurSL.dylib -------------------------------------------------------------------------------- /obj/Tweak.xm.893b3b13.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/blurSL/master/obj/Tweak.xm.893b3b13.o -------------------------------------------------------------------------------- /_/Library/MobileSubstrate/DynamicLibraries/blurSL.plist: -------------------------------------------------------------------------------- 1 | { Filter = { Bundles = ( "com.apple.springboard" ); }; } 2 | -------------------------------------------------------------------------------- /debs/com.twodayslate.blursl_0.0.1-1_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/blurSL/master/debs/com.twodayslate.blursl_0.0.1-1_iphoneos-arm.deb -------------------------------------------------------------------------------- /debs/com.twodayslate.blursl_0.0.1-2_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/blurSL/master/debs/com.twodayslate.blursl_0.0.1-2_iphoneos-arm.deb -------------------------------------------------------------------------------- /_/Library/MobileSubstrate/DynamicLibraries/blurSL.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twodayslate/blurSL/master/_/Library/MobileSubstrate/DynamicLibraries/blurSL.dylib -------------------------------------------------------------------------------- /Tweak.xm: -------------------------------------------------------------------------------- 1 | @interface SBSearchViewController 2 | -(BOOL)_hasResults; 3 | @end 4 | 5 | %hook SBSearchViewController 6 | -(BOOL)_hasResults { 7 | return YES; 8 | } 9 | %end -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- 1 | Package: com.twodayslate.blursl 2 | Name: blurSL 3 | Depends: mobilesubstrate 4 | Version: 0.0.1 5 | Architecture: iphoneos-arm 6 | Description: Blur the background for Spotlight 7 | Maintainer: twodayslate 8 | Author: twodayslate 9 | Section: Tweaks 10 | -------------------------------------------------------------------------------- /_/DEBIAN/control: -------------------------------------------------------------------------------- 1 | Package: com.twodayslate.blursl 2 | Name: blurSL 3 | Depends: mobilesubstrate 4 | Architecture: iphoneos-arm 5 | Description: Blur the background for Spotlight 6 | Maintainer: twodayslate 7 | Author: twodayslate 8 | Section: Tweaks 9 | Version: 0.0.1-2 10 | Installed-Size: 72 11 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | THEOS_DEVICE_IP ?= 192.168.1.24 2 | THEOS_DEVICE_PORT ?= 22 3 | 4 | THEOS_PACKAGE_DIR_NAME = debs 5 | TARGET := iphone:clang 6 | ARCHS := armv7 arm64 7 | 8 | include theos/makefiles/common.mk 9 | 10 | TWEAK_NAME = blurSL 11 | blurSL_FILES = Tweak.xm 12 | blursl_ARCHS = armv7 arm64 13 | 14 | include $(THEOS_MAKE_PATH)/tweak.mk 15 | 16 | after-install:: 17 | install.exec "killall -9 SpringBoard" 18 | --------------------------------------------------------------------------------