You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Mostly copied from/inspired by nugget from leminlimez
7
+
//
8
+
9
+
import SwiftUI
10
+
11
+
// ported from nugget, but kinda unnecessary
12
+
enumFileLocation:String,CaseIterable{
13
+
// Mobile Gestalt
14
+
// case resolution = "/var/Managed Preferences/mobile/com.apple.iokit.IOMobileGraphicsFamily.plist"
15
+
// case mga = "/var/containers/Shared/SystemGroup/systemgroup.com.apple.mobilegestaltcache/Library/Caches/com.apple.MobileGestalt.plist"
16
+
17
+
// Feature Flags
18
+
// case featureflags = "/var/preferences/FeatureFlags/Global.plist"
19
+
20
+
// Springboard Options
21
+
case springboard ="/var/Managed Preferences/mobile/com.apple.springboard.plist"
22
+
case footnote ="/var/containers/Shared/SystemGroup/systemgroup.com.apple.configurationprofiles/Library/ConfigurationProfiles/SharedDeviceConfiguration.plist"
23
+
case airdrop ="/var/Managed Preferences/mobile/com.apple.sharingd.plist"
24
+
case nanoregistry ="/var/mobile/Library/Preferences/com.apple.NanoRegistry.plist"
25
+
26
+
// Internal Options
27
+
case globalPreferences ="/var/Managed Preferences/mobile/.GlobalPreferences.plist"
28
+
case appStore ="/var/Managed Preferences/mobile/com.apple.AppStore.plist"
29
+
case backboardd ="/var/Managed Preferences/mobile/com.apple.backboardd.plist"
30
+
case coreMotion ="/var/Managed Preferences/mobile/com.apple.CoreMotion.plist"
31
+
case pasteboard ="/var/Managed Preferences/mobile/com.apple.Pasteboard.plist"
32
+
case notes ="/var/Managed Preferences/mobile/com.apple.mobilenotes.plist"
33
+
case uikit ="/var/Managed Preferences/mobile/com.apple.UIKit.plist"
34
+
35
+
// Daemons
36
+
// case disabledDaemons = "/var/db/com.apple.xpc.launchd/disabled.plist"
37
+
// case screentime = "/var/mobile/Library/Preferences/ScreenTimeAgent.plist"
38
+
39
+
// Risky Options
40
+
// case ota = "/var/Managed Preferences/mobile/com.apple.MobileAsset.plist"
0 commit comments