├── .gitignore ├── control ├── Makefile └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.stamp 3 | .theos 4 | .DS_Store 5 | theos 6 | _ 7 | obj 8 | debs 9 | -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- 1 | Package: org.thebigboss.searchlight9 2 | Name: Searchlight for iOS 9 3 | Depends: mobilesubstrate, applist, org.thebigboss.anyspot9, org.thebigboss.listlauncher9 4 | Conflicts: com.mattcmultimedia.clearonopen 5 | Version: 1.0 6 | Architecture: iphoneos-arm 7 | Description: System search and applicaiton launcher 8 | Maintainer: twodayslate 9 | Author: twodayslate 10 | Section: Tweaks 11 | Icon: file:///Library/PreferenceBundles/searchlightpreferences.bundle/icon.png 12 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | THEOS_DEVICE_IP = 127.0.0.1 2 | THEOS_DEVICE_PORT = 2222 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 = Searchlight 11 | Searchlight_FILES = Tweak.xm 12 | Searchlight_FRAMEWORKS = UIKit QuartzCore CoreGraphics 13 | Searchlight_PRIVATE_FRAMEWORKS = Preferences 14 | Searchlight_LIBRARIES = applist 15 | 16 | include $(THEOS_MAKE_PATH)/tweak.mk 17 | 18 | SUBPROJECTS += searchlightpreferences 19 | 20 | include $(THEOS_MAKE_PATH)/aggregate.mk 21 | 22 | after-install:: 23 | install.exec "killall -9 SpringBoard" 24 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Searchlight 2 | 3 | Searchlight is a system search and application launcher that can be launched anywhere! Take control of Spotlight! 4 | 5 | "Searchlight for iOS 9" is a wrapper package for ["AnySpot for iOS 9"](https://github.com/twodayslate/AnySpot-for-iOS-9/) and ["ListLauncher for iOS 9"](https://github.com/twodayslate/ListLauncher-for-iOS-9/) 6 | 7 | This package is created under the "Attribution-NonCommercial-ShareAlike 4.0 International" license. 8 | 9 | Donations via [Paypal](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2R9WDZCE7CPZ8) or [Bitcoin](https://coinbase.com/checkouts/59ead722b181591150e7de4ed6769cb4) are welcomed! 10 | 11 | There is no warranty for this product and comes as is. @twodayslate is not responsible for any damage that this product may cause. 12 | --------------------------------------------------------------------------------