applying fixes

This commit is contained in:
leminlimez
2024-09-28 14:37:22 -04:00
parent 6c1f9a566d
commit 3641c5a343
5 changed files with 17 additions and 10 deletions

View File

@@ -7,9 +7,6 @@ class FileLocation(Enum):
# Springboard Options
springboard = "/var/Managed Preferences/mobile/com.apple.springboard.plist"
footnote = "/var/containers/Shared/SystemGroup/systemgroup.com.apple.configurationprofiles/Library/ConfigurationProfiles/SharedDeviceConfiguration.plist"
uikit = "/var/Managed Preferences/mobile/com.apple.UIKit.plist"
wifiDebug = "/var/Managed Preferences/mobile/com.apple.MobileWiFi.debug.plist"
airdrop = "/var/Managed Preferences/mobile/com.apple.sharingd.plist"
# Internal Options
globalPreferences = "/var/Managed Preferences/mobile/.GlobalPreferences.plist"
@@ -17,4 +14,11 @@ class FileLocation(Enum):
backboardd = "/var/Managed Preferences/mobile/com.apple.backboardd.plist"
coreMotion = "/var/Managed Preferences/mobile/com.apple.CoreMotion.plist"
pasteboard = "/var/Managed Preferences/mobile/com.apple.Pasteboard.plist"
notes = "/var/Managed Preferences/mobile/com.apple.mobilenotes.plist"
notes = "/var/Managed Preferences/mobile/com.apple.mobilenotes.plist"
# support for older versions of python that cannot enumerate over enums
FileLocationsList: list[FileLocation] = [
FileLocation.resolution,
FileLocation.springboard, FileLocation.footnote,
FileLocation.globalPreferences, FileLocation.appStore, FileLocation.backboardd, FileLocation.coreMotion, FileLocation.pasteboard, FileLocation.notes
]