├── .gitignore ├── Images ├── Icon.png ├── iPad-image.png └── iPhone-image.jpeg ├── LICENSE ├── Makefile ├── PowerSettings.plist ├── README.md ├── Sources ├── PowerAction.swift ├── PowerSettingsView.swift ├── PowerSettingsViewModel.swift ├── Spawn.swift ├── Tweak.S └── Tweak.swift └── control /.gitignore: -------------------------------------------------------------------------------- 1 | .theos/ 2 | packages/ 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /Images/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightwindDev/PowerSettings/HEAD/Images/Icon.png -------------------------------------------------------------------------------- /Images/iPad-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightwindDev/PowerSettings/HEAD/Images/iPad-image.png -------------------------------------------------------------------------------- /Images/iPhone-image.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightwindDev/PowerSettings/HEAD/Images/iPhone-image.jpeg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightwindDev/PowerSettings/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightwindDev/PowerSettings/HEAD/Makefile -------------------------------------------------------------------------------- /PowerSettings.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightwindDev/PowerSettings/HEAD/PowerSettings.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightwindDev/PowerSettings/HEAD/README.md -------------------------------------------------------------------------------- /Sources/PowerAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightwindDev/PowerSettings/HEAD/Sources/PowerAction.swift -------------------------------------------------------------------------------- /Sources/PowerSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightwindDev/PowerSettings/HEAD/Sources/PowerSettingsView.swift -------------------------------------------------------------------------------- /Sources/PowerSettingsViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightwindDev/PowerSettings/HEAD/Sources/PowerSettingsViewModel.swift -------------------------------------------------------------------------------- /Sources/Spawn.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightwindDev/PowerSettings/HEAD/Sources/Spawn.swift -------------------------------------------------------------------------------- /Sources/Tweak.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightwindDev/PowerSettings/HEAD/Sources/Tweak.S -------------------------------------------------------------------------------- /Sources/Tweak.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightwindDev/PowerSettings/HEAD/Sources/Tweak.swift -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightwindDev/PowerSettings/HEAD/control --------------------------------------------------------------------------------