├── .gitignore ├── AppIcon.png ├── Intents ├── CancelBackup.swift ├── GetBackupProgress.swift ├── GetBackupState.swift ├── GetRingerState.swift ├── Lock.swift ├── Reboot.swift ├── Respring.swift ├── SetAutoBrightness.swift ├── SetAutoLock.swift ├── SetLocationServices.swift ├── SetRingerState.swift ├── StartBackup.swift ├── StartLocationSimulation.swift ├── StopLocationSimulation.swift ├── SwitchAppsRegistration.swift └── UserspaceReboot.swift ├── PrivateFrameworks ├── BaseBoard.framework │ └── BaseBoard.tbd ├── BoardServices.framework │ └── BoardServices.tbd ├── FrontBoardServices.framework │ └── FrontBoardServices.tbd ├── GraphicsServices.framework │ └── GraphicsServices.tbd ├── ManagedConfiguration.framework │ └── ManagedConfiguration.tbd ├── MobileBackup.framework │ └── MobileBackup.tbd └── MobileContainerManager.framework │ └── MobileContainerManager.tbd ├── README.md ├── Shared ├── CoreServices.h ├── Intents │ └── Enum.swift ├── PrivateHeader.h ├── TCUtil.h ├── TCUtil.m ├── TSUtil.h ├── TSUtil.m ├── locsim.h ├── locsim.m ├── userspaceReboot.c └── userspaceReboot.h ├── TrollCuts-Bridging-Header.h ├── TrollCuts.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── ca.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── ca.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── TrollCuts ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── AppIcon.png │ │ └── Contents.json │ └── Contents.json ├── ContentView.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json └── TrollCutsApp.swift ├── entitlements.plist └── ipabuild.sh /.gitignore: -------------------------------------------------------------------------------- 1 | build -------------------------------------------------------------------------------- /AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/AppIcon.png -------------------------------------------------------------------------------- /Intents/CancelBackup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/Intents/CancelBackup.swift -------------------------------------------------------------------------------- /Intents/GetBackupProgress.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/Intents/GetBackupProgress.swift -------------------------------------------------------------------------------- /Intents/GetBackupState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/Intents/GetBackupState.swift -------------------------------------------------------------------------------- /Intents/GetRingerState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/Intents/GetRingerState.swift -------------------------------------------------------------------------------- /Intents/Lock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/Intents/Lock.swift -------------------------------------------------------------------------------- /Intents/Reboot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/Intents/Reboot.swift -------------------------------------------------------------------------------- /Intents/Respring.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/Intents/Respring.swift -------------------------------------------------------------------------------- /Intents/SetAutoBrightness.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/Intents/SetAutoBrightness.swift -------------------------------------------------------------------------------- /Intents/SetAutoLock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/Intents/SetAutoLock.swift -------------------------------------------------------------------------------- /Intents/SetLocationServices.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/Intents/SetLocationServices.swift -------------------------------------------------------------------------------- /Intents/SetRingerState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/Intents/SetRingerState.swift -------------------------------------------------------------------------------- /Intents/StartBackup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/Intents/StartBackup.swift -------------------------------------------------------------------------------- /Intents/StartLocationSimulation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/Intents/StartLocationSimulation.swift -------------------------------------------------------------------------------- /Intents/StopLocationSimulation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/Intents/StopLocationSimulation.swift -------------------------------------------------------------------------------- /Intents/SwitchAppsRegistration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/Intents/SwitchAppsRegistration.swift -------------------------------------------------------------------------------- /Intents/UserspaceReboot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/Intents/UserspaceReboot.swift -------------------------------------------------------------------------------- /PrivateFrameworks/BaseBoard.framework/BaseBoard.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/PrivateFrameworks/BaseBoard.framework/BaseBoard.tbd -------------------------------------------------------------------------------- /PrivateFrameworks/BoardServices.framework/BoardServices.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/PrivateFrameworks/BoardServices.framework/BoardServices.tbd -------------------------------------------------------------------------------- /PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices.tbd -------------------------------------------------------------------------------- /PrivateFrameworks/GraphicsServices.framework/GraphicsServices.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/PrivateFrameworks/GraphicsServices.framework/GraphicsServices.tbd -------------------------------------------------------------------------------- /PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration.tbd -------------------------------------------------------------------------------- /PrivateFrameworks/MobileBackup.framework/MobileBackup.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/PrivateFrameworks/MobileBackup.framework/MobileBackup.tbd -------------------------------------------------------------------------------- /PrivateFrameworks/MobileContainerManager.framework/MobileContainerManager.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/PrivateFrameworks/MobileContainerManager.framework/MobileContainerManager.tbd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/README.md -------------------------------------------------------------------------------- /Shared/CoreServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/Shared/CoreServices.h -------------------------------------------------------------------------------- /Shared/Intents/Enum.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/Shared/Intents/Enum.swift -------------------------------------------------------------------------------- /Shared/PrivateHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/Shared/PrivateHeader.h -------------------------------------------------------------------------------- /Shared/TCUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/Shared/TCUtil.h -------------------------------------------------------------------------------- /Shared/TCUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/Shared/TCUtil.m -------------------------------------------------------------------------------- /Shared/TSUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/Shared/TSUtil.h -------------------------------------------------------------------------------- /Shared/TSUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/Shared/TSUtil.m -------------------------------------------------------------------------------- /Shared/locsim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/Shared/locsim.h -------------------------------------------------------------------------------- /Shared/locsim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/Shared/locsim.m -------------------------------------------------------------------------------- /Shared/userspaceReboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/Shared/userspaceReboot.c -------------------------------------------------------------------------------- /Shared/userspaceReboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/Shared/userspaceReboot.h -------------------------------------------------------------------------------- /TrollCuts-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/TrollCuts-Bridging-Header.h -------------------------------------------------------------------------------- /TrollCuts.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/TrollCuts.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TrollCuts.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/TrollCuts.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TrollCuts.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/TrollCuts.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /TrollCuts.xcodeproj/project.xcworkspace/xcuserdata/ca.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/TrollCuts.xcodeproj/project.xcworkspace/xcuserdata/ca.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /TrollCuts.xcodeproj/xcuserdata/ca.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/TrollCuts.xcodeproj/xcuserdata/ca.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /TrollCuts/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/TrollCuts/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /TrollCuts/Assets.xcassets/AppIcon.appiconset/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/TrollCuts/Assets.xcassets/AppIcon.appiconset/AppIcon.png -------------------------------------------------------------------------------- /TrollCuts/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/TrollCuts/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TrollCuts/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/TrollCuts/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TrollCuts/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/TrollCuts/ContentView.swift -------------------------------------------------------------------------------- /TrollCuts/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/TrollCuts/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TrollCuts/TrollCutsApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/TrollCuts/TrollCutsApp.swift -------------------------------------------------------------------------------- /entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/entitlements.plist -------------------------------------------------------------------------------- /ipabuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udevsharold/TrollCuts/HEAD/ipabuild.sh --------------------------------------------------------------------------------