├── Makefile ├── NSTask.h ├── README.md ├── SettingsButtons.plist ├── Tweak.xm ├── control ├── layout └── Library │ └── Application Support │ └── SettingsButtons │ ├── darkmode@2x.png │ ├── darkmode@3x.png │ ├── flashlight@2x.png │ ├── flashlight@3x.png │ ├── ldrestart@2x.png │ ├── ldrestart@3x.png │ ├── lightmode@2x.png │ ├── lightmode@3x.png │ ├── lowpower@2x.png │ ├── lowpower@3x.png │ ├── respring@2x.png │ ├── respring@3x.png │ ├── safemode@2x.png │ └── safemode@3x.png ├── packages └── com.nahtedetihw.settingsbuttons_1.6_iphoneos-arm.deb └── settingsbuttonsprefs ├── Makefile ├── Resources ├── Info.plist ├── Root.plist ├── banner.png ├── banner2.png ├── icon.png ├── icon@2x.png └── icon@3x.png ├── SETBTNSPreferences.h ├── SETBTNSPreferences.m └── entry.plist /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahtedetihw/SettingsButtons/HEAD/Makefile -------------------------------------------------------------------------------- /NSTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahtedetihw/SettingsButtons/HEAD/NSTask.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahtedetihw/SettingsButtons/HEAD/README.md -------------------------------------------------------------------------------- /SettingsButtons.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahtedetihw/SettingsButtons/HEAD/SettingsButtons.plist -------------------------------------------------------------------------------- /Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahtedetihw/SettingsButtons/HEAD/Tweak.xm -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahtedetihw/SettingsButtons/HEAD/control -------------------------------------------------------------------------------- /layout/Library/Application Support/SettingsButtons/darkmode@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahtedetihw/SettingsButtons/HEAD/layout/Library/Application Support/SettingsButtons/darkmode@2x.png -------------------------------------------------------------------------------- /layout/Library/Application Support/SettingsButtons/darkmode@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahtedetihw/SettingsButtons/HEAD/layout/Library/Application Support/SettingsButtons/darkmode@3x.png -------------------------------------------------------------------------------- /layout/Library/Application Support/SettingsButtons/flashlight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahtedetihw/SettingsButtons/HEAD/layout/Library/Application Support/SettingsButtons/flashlight@2x.png -------------------------------------------------------------------------------- /layout/Library/Application Support/SettingsButtons/flashlight@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahtedetihw/SettingsButtons/HEAD/layout/Library/Application Support/SettingsButtons/flashlight@3x.png -------------------------------------------------------------------------------- /layout/Library/Application Support/SettingsButtons/ldrestart@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahtedetihw/SettingsButtons/HEAD/layout/Library/Application Support/SettingsButtons/ldrestart@2x.png -------------------------------------------------------------------------------- /layout/Library/Application Support/SettingsButtons/ldrestart@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahtedetihw/SettingsButtons/HEAD/layout/Library/Application Support/SettingsButtons/ldrestart@3x.png -------------------------------------------------------------------------------- /layout/Library/Application Support/SettingsButtons/lightmode@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahtedetihw/SettingsButtons/HEAD/layout/Library/Application Support/SettingsButtons/lightmode@2x.png -------------------------------------------------------------------------------- /layout/Library/Application Support/SettingsButtons/lightmode@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahtedetihw/SettingsButtons/HEAD/layout/Library/Application Support/SettingsButtons/lightmode@3x.png -------------------------------------------------------------------------------- /layout/Library/Application Support/SettingsButtons/lowpower@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahtedetihw/SettingsButtons/HEAD/layout/Library/Application Support/SettingsButtons/lowpower@2x.png -------------------------------------------------------------------------------- /layout/Library/Application Support/SettingsButtons/lowpower@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahtedetihw/SettingsButtons/HEAD/layout/Library/Application Support/SettingsButtons/lowpower@3x.png -------------------------------------------------------------------------------- /layout/Library/Application Support/SettingsButtons/respring@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahtedetihw/SettingsButtons/HEAD/layout/Library/Application Support/SettingsButtons/respring@2x.png -------------------------------------------------------------------------------- /layout/Library/Application Support/SettingsButtons/respring@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahtedetihw/SettingsButtons/HEAD/layout/Library/Application Support/SettingsButtons/respring@3x.png -------------------------------------------------------------------------------- /layout/Library/Application Support/SettingsButtons/safemode@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahtedetihw/SettingsButtons/HEAD/layout/Library/Application Support/SettingsButtons/safemode@2x.png -------------------------------------------------------------------------------- /layout/Library/Application Support/SettingsButtons/safemode@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahtedetihw/SettingsButtons/HEAD/layout/Library/Application Support/SettingsButtons/safemode@3x.png -------------------------------------------------------------------------------- /packages/com.nahtedetihw.settingsbuttons_1.6_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahtedetihw/SettingsButtons/HEAD/packages/com.nahtedetihw.settingsbuttons_1.6_iphoneos-arm.deb -------------------------------------------------------------------------------- /settingsbuttonsprefs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahtedetihw/SettingsButtons/HEAD/settingsbuttonsprefs/Makefile -------------------------------------------------------------------------------- /settingsbuttonsprefs/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahtedetihw/SettingsButtons/HEAD/settingsbuttonsprefs/Resources/Info.plist -------------------------------------------------------------------------------- /settingsbuttonsprefs/Resources/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahtedetihw/SettingsButtons/HEAD/settingsbuttonsprefs/Resources/Root.plist -------------------------------------------------------------------------------- /settingsbuttonsprefs/Resources/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahtedetihw/SettingsButtons/HEAD/settingsbuttonsprefs/Resources/banner.png -------------------------------------------------------------------------------- /settingsbuttonsprefs/Resources/banner2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahtedetihw/SettingsButtons/HEAD/settingsbuttonsprefs/Resources/banner2.png -------------------------------------------------------------------------------- /settingsbuttonsprefs/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahtedetihw/SettingsButtons/HEAD/settingsbuttonsprefs/Resources/icon.png -------------------------------------------------------------------------------- /settingsbuttonsprefs/Resources/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahtedetihw/SettingsButtons/HEAD/settingsbuttonsprefs/Resources/icon@2x.png -------------------------------------------------------------------------------- /settingsbuttonsprefs/Resources/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahtedetihw/SettingsButtons/HEAD/settingsbuttonsprefs/Resources/icon@3x.png -------------------------------------------------------------------------------- /settingsbuttonsprefs/SETBTNSPreferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahtedetihw/SettingsButtons/HEAD/settingsbuttonsprefs/SETBTNSPreferences.h -------------------------------------------------------------------------------- /settingsbuttonsprefs/SETBTNSPreferences.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahtedetihw/SettingsButtons/HEAD/settingsbuttonsprefs/SETBTNSPreferences.m -------------------------------------------------------------------------------- /settingsbuttonsprefs/entry.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahtedetihw/SettingsButtons/HEAD/settingsbuttonsprefs/entry.plist --------------------------------------------------------------------------------