├── .gitignore ├── AppearancePane ├── AppearancePane.h ├── Assets.xcassets │ ├── AppearanceAutoNoColor_Normal.imageset │ │ ├── AppearanceAutoNoColor_Normal.png │ │ ├── AppearanceAutoNoColor_Normal@2x.png │ │ └── Contents.json │ ├── AppearanceAuto_Normal.imageset │ │ ├── AppearanceAuto_Normal.png │ │ ├── AppearanceAuto_Normal@2x.png │ │ └── Contents.json │ ├── AppearanceDarkNoColor_Normal.imageset │ │ ├── AppearanceDarkNoColor_Normal.png │ │ ├── AppearanceDarkNoColor_Normal@2x.png │ │ └── Contents.json │ ├── AppearanceDark_Normal.imageset │ │ ├── AppearanceDark_Normal.png │ │ ├── AppearanceDark_Normal@2x.png │ │ └── Contents.json │ ├── AppearanceLightNoColor_Normal.imageset │ │ ├── AppearanceLightNoColor_Normal.png │ │ ├── AppearanceLightNoColor_Normal@2x.png │ │ └── Contents.json │ ├── AppearanceLight_Normal.imageset │ │ ├── AppearanceLight_Normal.png │ │ ├── AppearanceLight_Normal@2x.png │ │ └── Contents.json │ ├── Contents.json │ ├── General Icon.imageset │ │ ├── Contents.json │ │ ├── General Icon 40_Normal.png │ │ └── General Icon 40_Normal@2x.png │ ├── HighlightRect_0.imageset │ │ ├── Contents.json │ │ └── red.png │ ├── HighlightRect_1.imageset │ │ ├── Contents.json │ │ └── orange.png │ ├── HighlightRect_2.imageset │ │ ├── Contents.json │ │ └── yellow.png │ ├── HighlightRect_3.imageset │ │ ├── Contents.json │ │ └── green.png │ ├── HighlightRect_4.imageset │ │ ├── Contents.json │ │ └── blue.png │ ├── HighlightRect_5.imageset │ │ ├── Contents.json │ │ └── purple.png │ ├── HighlightRect_6.imageset │ │ ├── Contents.json │ │ └── pink.png │ ├── HighlightRect_7.imageset │ │ ├── Contents.json │ │ └── gary.png │ ├── HighlightRect_8.imageset │ │ ├── Contents.json │ │ └── accent.png │ ├── MuticolorAccentWheel.imageset │ │ ├── Contents.json │ │ └── Screen Shot 2023-06-05 at 4.05.23 PM.png │ ├── selectionColor_mask-auto_Normal.imageset │ │ ├── Contents.json │ │ ├── selectionColor_mask-auto_Normal.png │ │ └── selectionColor_mask-auto_Normal@2x.png │ └── selectionColor_mask_Normal.imageset │ │ ├── Contents.json │ │ ├── selectionColor_mask_Normal.png │ │ └── selectionColor_mask_Normal@2x.png ├── PaneDefaults.swift ├── PaneView.swift └── README.md ├── Legacy Preferences.xcodeproj └── project.pbxproj ├── Legacy Preferences ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── Contents.json │ ├── Ignored Panes │ │ ├── AccountBlank.imageset │ │ │ ├── Contents.json │ │ │ ├── Untitled.png │ │ │ └── Untitled2.png │ │ ├── AccountBlank_big.imageset │ │ │ ├── AccountBlank_1x.png │ │ │ └── Contents.json │ │ ├── AppleID │ │ │ ├── Appstore_Normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Media & Purchase Icon 24_Normal@2x.png │ │ │ │ └── Media & Purchases Icon 24_Normal.png │ │ │ ├── Contact_Normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Name-Phone-Email Icon 24_Normal.png │ │ │ │ └── Name-Phone-Email Icon 24_Normal@2x.png │ │ │ ├── Contents.json │ │ │ ├── Overview_Normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Overview Icon 24_Normal.png │ │ │ │ └── Overview Icon 24_Normal@2x.png │ │ │ ├── Password_Normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Password & Security Icon 24_Normal.png │ │ │ │ └── Password & Security Icon 24_Normal@2x.png │ │ │ ├── Payment_Normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Payment Shipping Icon 24_Normal.png │ │ │ │ └── Payment Shipping Icon 24_Normal@2x.png │ │ │ └── iCloud_Normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── iCloud Icon 24_Normal.png │ │ │ │ └── iCloud Icon 24_Normal@2x.png │ │ ├── Contents.json │ │ ├── FamilySharing │ │ │ ├── Contents.json │ │ │ └── FamilySharing-sidebarIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── FamilySharing-sidebarIcon.png │ │ │ │ └── FamilySharingPrefPane.png │ │ ├── InternetAccounts │ │ │ ├── Contents.json │ │ │ └── Internet Accounts Icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Internet Accounts Icon 40_Normal.png │ │ │ │ └── Internet Accounts Icon 40_Normal@2x.png │ │ ├── ScreenTime │ │ │ ├── Always Allowed Icon_Normal.imageset │ │ │ │ ├── Always Allowed Icon 24 _Normal@2x.png │ │ │ │ ├── Always Allowed Icon 24_Normal.png │ │ │ │ └── Contents.json │ │ │ ├── App Limits Icon_Normal.imageset │ │ │ │ ├── App Limits Icon 24 _Normal@2x.png │ │ │ │ ├── App Limits Icon 24_Normal.png │ │ │ │ └── Contents.json │ │ │ ├── App Usage Icon_Normal.imageset │ │ │ │ ├── App Usage Icon 24 _Normal@2x.png │ │ │ │ ├── App Usage Sidebar Icon 24_Normal.png │ │ │ │ └── Contents.json │ │ │ ├── Commincation Limits Icon_Normal.imageset │ │ │ │ ├── Commincation Limits Icon 24 _Normal@2x.png │ │ │ │ ├── Commincation Limits Icon 24_Normal.png │ │ │ │ └── Contents.json │ │ │ ├── Content Privacy Icon_Normal.imageset │ │ │ │ ├── Content Privacy Icon 24 _Normal@2x.png │ │ │ │ ├── Content Privacy Icon 24_Normal.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Down Time Icon_Normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Down Time Icon 24 _Normal@2x.png │ │ │ │ └── Down Time Icon 24_Normal.png │ │ │ ├── Notifications Icon_Normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Notifications Icon 24 _Normal@2x.png │ │ │ │ └── Notifications Icon 24_Normal.png │ │ │ ├── Options Icon_Normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Options Icon 24 _Normal@2x.png │ │ │ │ └── Options Icon 24_Normal.png │ │ │ ├── Pick Up Icon_Normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Pick Up Icon 24 _Normal@2x.png │ │ │ │ └── Pick Up Icon 24_Normal.png │ │ │ └── Requests Icon_Normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Requests Icon 24_Normal.png │ │ │ │ └── Requests Icon 24_Normal@2x.png │ │ ├── SoftwareUpdate │ │ │ ├── Contents.json │ │ │ └── SoftwareUpdate.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── SoftwareUpdate.png │ │ │ │ └── SoftwareUpdate2.png │ │ └── TimeMachine │ │ │ ├── Contents.json │ │ │ └── TimeMachine_Normal.imageset │ │ │ ├── Contents.json │ │ │ ├── Time Machine 128 _Normal@2x.png │ │ │ └── Time Machine 128_Normal.png │ └── Pane Icons │ │ ├── Accessibility Icon.imageset │ │ ├── Contents.json │ │ ├── UniversalAccessPref-6 (dragged).png │ │ └── UniversalAccessPref-7 (dragged).png │ │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon_128x128_Normal.png │ │ ├── icon_128x128_Normal@2x.png │ │ ├── icon_16x16_Normal.png │ │ ├── icon_16x16_Normal@2x.png │ │ ├── icon_256x256_Normal.png │ │ ├── icon_256x256_Normal@2x.png │ │ ├── icon_32x32_Normal.png │ │ ├── icon_32x32_Normal@2x.png │ │ ├── icon_512x512_Normal.png │ │ └── icon_512x512_Normal@2x.png │ │ ├── Apple ID Icon.imageset │ │ ├── Apple ID Icon 40_Normal.png │ │ ├── Apple ID Icon 40_Normal@2x.png │ │ └── Contents.json │ │ ├── Battery Icon.imageset │ │ ├── Battery40_Normal.png │ │ ├── Battery80_Normal@2x.png │ │ └── Contents.json │ │ ├── Bluetooth Icon.imageset │ │ ├── BluetoothIcon_Normal.png │ │ ├── BluetoothIcon_Normal@2x.png │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Date & Time Icon.imageset │ │ ├── Contents.json │ │ ├── DateTime_Normal.png │ │ └── DateTime_Normal@2x.png │ │ ├── Desktop & Screensaver Icon.imageset │ │ ├── Contents.json │ │ ├── DesktopAndScreenSaver Icon 40_Normal.png │ │ └── DesktopAndScreenSaver Icon 40_Normal@2x.png │ │ ├── Displays Icon.imageset │ │ ├── Contents.json │ │ ├── DisplaysPrefIcon_Normal.png │ │ └── DisplaysPrefIcon_Normal@2x.png │ │ ├── Dock & Menu Bar Icon.imageset │ │ ├── Contents.json │ │ ├── DockIcon_Normal.png │ │ └── DockIcon_Normal@2x.png │ │ ├── Energy Saver Icon.imageset │ │ ├── Contents.json │ │ ├── EnergySaver-6 (dragged).png │ │ └── EnergySaver-7 (dragged).png │ │ ├── Family Sharing Icon.imageset │ │ ├── Contents.json │ │ ├── _Family Sharing Top-Level Icon 40_Normal.png │ │ └── _Family Sharing Top-Level Icon 40_Normal@2x.png │ │ ├── General Icon.imageset │ │ ├── Contents.json │ │ ├── General Icon 40_Normal.png │ │ └── General Icon 40_Normal@2x.png │ │ ├── Keyboard Icon.imageset │ │ ├── Contents.json │ │ ├── SystemPrefs_Keyboard.png │ │ └── SystemPrefs_Keyboard@2x.png │ │ ├── Language & Region Icon.imageset │ │ ├── Contents.json │ │ ├── SystemPrefs_Localization_Normal.png │ │ └── SystemPrefs_Localization_Normal@2x.png │ │ ├── Mission Control Icon.imageset │ │ ├── Contents.json │ │ ├── MissionControlIcon_Normal.png │ │ └── MissionControlIcon_Normal@2x.png │ │ ├── Mouse Icon.imageset │ │ ├── Contents.json │ │ ├── SystemPrefs_Mouse.png │ │ └── SystemPrefs_Mouse@2x.png │ │ ├── Network Icon.imageset │ │ ├── Contents.json │ │ ├── Network Icon 40_Normal.png │ │ └── Network Icon 40_Normal@2x.png │ │ ├── Notifications Icon.imageset │ │ ├── Contents.json │ │ ├── _Notifications Top-Level Icon 40_Normal.png │ │ └── _Notifications Top-Level Icon 40_Normal@2x.png │ │ ├── Printers & Scanners Icon.imageset │ │ ├── Contents.json │ │ ├── PrintScanPref-6 (dragged).png │ │ └── PrintScanPref-7 (dragged).png │ │ ├── Screen Time Icon.imageset │ │ ├── Contents.json │ │ ├── ScreenTime-6 (dragged).png │ │ └── ScreenTime-7 (dragged).png │ │ ├── Security & Privacy Icon.imageset │ │ ├── Contents.json │ │ ├── _Security and Privacy Top-Level Icon 40_Normal.png │ │ └── _Security and Privacy Top-Level Icon 40_Normal@2x.png │ │ ├── Siri Icon.imageset │ │ ├── Contents.json │ │ ├── System Preferences Icon 40_Normal.png │ │ └── System Preferences Icon 40_Normal@2x.png │ │ ├── Software Update Icon.imageset │ │ ├── Contents.json │ │ ├── Software Update Icon 40-1_Normal.png │ │ └── Software Update Icon 40_Normal@2x.png │ │ ├── Sound Icon.imageset │ │ ├── Contents.json │ │ ├── Sound Icon 40_Normal.png │ │ └── Sound Icon 40_Normal@2x.png │ │ ├── Spotlight Icon.imageset │ │ ├── Contents.json │ │ ├── Spotlight Icon 40_Normal.png │ │ └── Spotlight Icon 40_Normal@2x.png │ │ ├── Startup Disk Icon.imageset │ │ ├── Contents.json │ │ ├── StartupDisk-4 (dragged).png │ │ ├── StartupDisk-6 (dragged).png │ │ └── StartupDisk-7 (dragged).png │ │ ├── Time Machine Icon.imageset │ │ ├── Contents.json │ │ ├── _Time Machine Top-Level Icon 40 _Normal@2x.png │ │ └── _Time Machine Top-Level Icon 40_Normal.png │ │ ├── Trackpad Icon.imageset │ │ ├── Contents.json │ │ ├── SystemPrefs_Trackpad.png │ │ └── SystemPrefs_Trackpad@2x.png │ │ └── Users & Groups Icon.imageset │ │ ├── Contents.json │ │ ├── User Groups Icon 40_Normal.png │ │ └── User Groups Icon 40_Normal@2x.png ├── Ignored Panes │ ├── AppleIDPane.swift │ ├── FamilySharingPane.swift │ ├── ScreenTimePane.swift │ ├── SoftwareUpdatePane.swift │ ├── StartupDiskPane.swift │ └── TimeMachinePane.swift ├── LegacyPreferencesApp.swift ├── Legacy_Preferences.entitlements ├── PaneGridItem.swift ├── PaneGridView.swift ├── PaneManager.swift ├── SearchField.swift └── UnavailableLabel.swift ├── MissionControlPane ├── Assets.xcassets │ ├── Contents.json │ └── corners.imageset │ │ ├── Contents.json │ │ ├── corners.png │ │ └── corners@2x.png ├── MissionControlPane.h ├── PaneDefaults.swift └── PaneView.swift ├── README.md ├── Shared ├── Logger.swift ├── PaneConstants.swift └── Views │ ├── PaneSidebarItem.swift │ ├── PreferenceWellView.swift │ └── VisualEffectView.swift └── images ├── appearance-pane-screenshot-2023-06-13.png ├── example-img-social.png ├── example-img.png └── system-preferences-icon.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/.gitignore -------------------------------------------------------------------------------- /AppearancePane/AppearancePane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/AppearancePane.h -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/AppearanceAutoNoColor_Normal.imageset/AppearanceAutoNoColor_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/AppearanceAutoNoColor_Normal.imageset/AppearanceAutoNoColor_Normal.png -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/AppearanceAutoNoColor_Normal.imageset/AppearanceAutoNoColor_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/AppearanceAutoNoColor_Normal.imageset/AppearanceAutoNoColor_Normal@2x.png -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/AppearanceAutoNoColor_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/AppearanceAutoNoColor_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/AppearanceAuto_Normal.imageset/AppearanceAuto_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/AppearanceAuto_Normal.imageset/AppearanceAuto_Normal.png -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/AppearanceAuto_Normal.imageset/AppearanceAuto_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/AppearanceAuto_Normal.imageset/AppearanceAuto_Normal@2x.png -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/AppearanceAuto_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/AppearanceAuto_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/AppearanceDarkNoColor_Normal.imageset/AppearanceDarkNoColor_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/AppearanceDarkNoColor_Normal.imageset/AppearanceDarkNoColor_Normal.png -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/AppearanceDarkNoColor_Normal.imageset/AppearanceDarkNoColor_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/AppearanceDarkNoColor_Normal.imageset/AppearanceDarkNoColor_Normal@2x.png -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/AppearanceDarkNoColor_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/AppearanceDarkNoColor_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/AppearanceDark_Normal.imageset/AppearanceDark_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/AppearanceDark_Normal.imageset/AppearanceDark_Normal.png -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/AppearanceDark_Normal.imageset/AppearanceDark_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/AppearanceDark_Normal.imageset/AppearanceDark_Normal@2x.png -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/AppearanceDark_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/AppearanceDark_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/AppearanceLightNoColor_Normal.imageset/AppearanceLightNoColor_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/AppearanceLightNoColor_Normal.imageset/AppearanceLightNoColor_Normal.png -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/AppearanceLightNoColor_Normal.imageset/AppearanceLightNoColor_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/AppearanceLightNoColor_Normal.imageset/AppearanceLightNoColor_Normal@2x.png -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/AppearanceLightNoColor_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/AppearanceLightNoColor_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/AppearanceLight_Normal.imageset/AppearanceLight_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/AppearanceLight_Normal.imageset/AppearanceLight_Normal.png -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/AppearanceLight_Normal.imageset/AppearanceLight_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/AppearanceLight_Normal.imageset/AppearanceLight_Normal@2x.png -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/AppearanceLight_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/AppearanceLight_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/General Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/General Icon.imageset/Contents.json -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/General Icon.imageset/General Icon 40_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/General Icon.imageset/General Icon 40_Normal.png -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/General Icon.imageset/General Icon 40_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/General Icon.imageset/General Icon 40_Normal@2x.png -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/HighlightRect_0.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/HighlightRect_0.imageset/Contents.json -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/HighlightRect_0.imageset/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/HighlightRect_0.imageset/red.png -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/HighlightRect_1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/HighlightRect_1.imageset/Contents.json -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/HighlightRect_1.imageset/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/HighlightRect_1.imageset/orange.png -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/HighlightRect_2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/HighlightRect_2.imageset/Contents.json -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/HighlightRect_2.imageset/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/HighlightRect_2.imageset/yellow.png -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/HighlightRect_3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/HighlightRect_3.imageset/Contents.json -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/HighlightRect_3.imageset/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/HighlightRect_3.imageset/green.png -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/HighlightRect_4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/HighlightRect_4.imageset/Contents.json -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/HighlightRect_4.imageset/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/HighlightRect_4.imageset/blue.png -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/HighlightRect_5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/HighlightRect_5.imageset/Contents.json -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/HighlightRect_5.imageset/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/HighlightRect_5.imageset/purple.png -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/HighlightRect_6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/HighlightRect_6.imageset/Contents.json -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/HighlightRect_6.imageset/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/HighlightRect_6.imageset/pink.png -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/HighlightRect_7.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/HighlightRect_7.imageset/Contents.json -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/HighlightRect_7.imageset/gary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/HighlightRect_7.imageset/gary.png -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/HighlightRect_8.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/HighlightRect_8.imageset/Contents.json -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/HighlightRect_8.imageset/accent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/HighlightRect_8.imageset/accent.png -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/MuticolorAccentWheel.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/MuticolorAccentWheel.imageset/Contents.json -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/MuticolorAccentWheel.imageset/Screen Shot 2023-06-05 at 4.05.23 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/MuticolorAccentWheel.imageset/Screen Shot 2023-06-05 at 4.05.23 PM.png -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/selectionColor_mask-auto_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/selectionColor_mask-auto_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/selectionColor_mask-auto_Normal.imageset/selectionColor_mask-auto_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/selectionColor_mask-auto_Normal.imageset/selectionColor_mask-auto_Normal.png -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/selectionColor_mask-auto_Normal.imageset/selectionColor_mask-auto_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/selectionColor_mask-auto_Normal.imageset/selectionColor_mask-auto_Normal@2x.png -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/selectionColor_mask_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/selectionColor_mask_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/selectionColor_mask_Normal.imageset/selectionColor_mask_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/selectionColor_mask_Normal.imageset/selectionColor_mask_Normal.png -------------------------------------------------------------------------------- /AppearancePane/Assets.xcassets/selectionColor_mask_Normal.imageset/selectionColor_mask_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/Assets.xcassets/selectionColor_mask_Normal.imageset/selectionColor_mask_Normal@2x.png -------------------------------------------------------------------------------- /AppearancePane/PaneDefaults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/PaneDefaults.swift -------------------------------------------------------------------------------- /AppearancePane/PaneView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/PaneView.swift -------------------------------------------------------------------------------- /AppearancePane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/AppearancePane/README.md -------------------------------------------------------------------------------- /Legacy Preferences.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/AccountBlank.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/AccountBlank.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/AccountBlank.imageset/Untitled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/AccountBlank.imageset/Untitled.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/AccountBlank.imageset/Untitled2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/AccountBlank.imageset/Untitled2.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/AccountBlank_big.imageset/AccountBlank_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/AccountBlank_big.imageset/AccountBlank_1x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/AccountBlank_big.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/AccountBlank_big.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/AppleID/Appstore_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/AppleID/Appstore_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/AppleID/Appstore_Normal.imageset/Media & Purchase Icon 24_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/AppleID/Appstore_Normal.imageset/Media & Purchase Icon 24_Normal@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/AppleID/Appstore_Normal.imageset/Media & Purchases Icon 24_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/AppleID/Appstore_Normal.imageset/Media & Purchases Icon 24_Normal.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/AppleID/Contact_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/AppleID/Contact_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/AppleID/Contact_Normal.imageset/Name-Phone-Email Icon 24_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/AppleID/Contact_Normal.imageset/Name-Phone-Email Icon 24_Normal.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/AppleID/Contact_Normal.imageset/Name-Phone-Email Icon 24_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/AppleID/Contact_Normal.imageset/Name-Phone-Email Icon 24_Normal@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/AppleID/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/AppleID/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/AppleID/Overview_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/AppleID/Overview_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/AppleID/Overview_Normal.imageset/Overview Icon 24_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/AppleID/Overview_Normal.imageset/Overview Icon 24_Normal.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/AppleID/Overview_Normal.imageset/Overview Icon 24_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/AppleID/Overview_Normal.imageset/Overview Icon 24_Normal@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/AppleID/Password_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/AppleID/Password_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/AppleID/Password_Normal.imageset/Password & Security Icon 24_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/AppleID/Password_Normal.imageset/Password & Security Icon 24_Normal.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/AppleID/Password_Normal.imageset/Password & Security Icon 24_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/AppleID/Password_Normal.imageset/Password & Security Icon 24_Normal@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/AppleID/Payment_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/AppleID/Payment_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/AppleID/Payment_Normal.imageset/Payment Shipping Icon 24_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/AppleID/Payment_Normal.imageset/Payment Shipping Icon 24_Normal.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/AppleID/Payment_Normal.imageset/Payment Shipping Icon 24_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/AppleID/Payment_Normal.imageset/Payment Shipping Icon 24_Normal@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/AppleID/iCloud_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/AppleID/iCloud_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/AppleID/iCloud_Normal.imageset/iCloud Icon 24_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/AppleID/iCloud_Normal.imageset/iCloud Icon 24_Normal.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/AppleID/iCloud_Normal.imageset/iCloud Icon 24_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/AppleID/iCloud_Normal.imageset/iCloud Icon 24_Normal@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/FamilySharing/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/FamilySharing/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/FamilySharing/FamilySharing-sidebarIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/FamilySharing/FamilySharing-sidebarIcon.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/FamilySharing/FamilySharing-sidebarIcon.imageset/FamilySharing-sidebarIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/FamilySharing/FamilySharing-sidebarIcon.imageset/FamilySharing-sidebarIcon.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/FamilySharing/FamilySharing-sidebarIcon.imageset/FamilySharingPrefPane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/FamilySharing/FamilySharing-sidebarIcon.imageset/FamilySharingPrefPane.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/InternetAccounts/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/InternetAccounts/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/InternetAccounts/Internet Accounts Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/InternetAccounts/Internet Accounts Icon.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/InternetAccounts/Internet Accounts Icon.imageset/Internet Accounts Icon 40_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/InternetAccounts/Internet Accounts Icon.imageset/Internet Accounts Icon 40_Normal.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/InternetAccounts/Internet Accounts Icon.imageset/Internet Accounts Icon 40_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/InternetAccounts/Internet Accounts Icon.imageset/Internet Accounts Icon 40_Normal@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Always Allowed Icon_Normal.imageset/Always Allowed Icon 24 _Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Always Allowed Icon_Normal.imageset/Always Allowed Icon 24 _Normal@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Always Allowed Icon_Normal.imageset/Always Allowed Icon 24_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Always Allowed Icon_Normal.imageset/Always Allowed Icon 24_Normal.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Always Allowed Icon_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Always Allowed Icon_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/App Limits Icon_Normal.imageset/App Limits Icon 24 _Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/App Limits Icon_Normal.imageset/App Limits Icon 24 _Normal@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/App Limits Icon_Normal.imageset/App Limits Icon 24_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/App Limits Icon_Normal.imageset/App Limits Icon 24_Normal.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/App Limits Icon_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/App Limits Icon_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/App Usage Icon_Normal.imageset/App Usage Icon 24 _Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/App Usage Icon_Normal.imageset/App Usage Icon 24 _Normal@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/App Usage Icon_Normal.imageset/App Usage Sidebar Icon 24_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/App Usage Icon_Normal.imageset/App Usage Sidebar Icon 24_Normal.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/App Usage Icon_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/App Usage Icon_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Commincation Limits Icon_Normal.imageset/Commincation Limits Icon 24 _Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Commincation Limits Icon_Normal.imageset/Commincation Limits Icon 24 _Normal@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Commincation Limits Icon_Normal.imageset/Commincation Limits Icon 24_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Commincation Limits Icon_Normal.imageset/Commincation Limits Icon 24_Normal.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Commincation Limits Icon_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Commincation Limits Icon_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Content Privacy Icon_Normal.imageset/Content Privacy Icon 24 _Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Content Privacy Icon_Normal.imageset/Content Privacy Icon 24 _Normal@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Content Privacy Icon_Normal.imageset/Content Privacy Icon 24_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Content Privacy Icon_Normal.imageset/Content Privacy Icon 24_Normal.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Content Privacy Icon_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Content Privacy Icon_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Down Time Icon_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Down Time Icon_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Down Time Icon_Normal.imageset/Down Time Icon 24 _Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Down Time Icon_Normal.imageset/Down Time Icon 24 _Normal@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Down Time Icon_Normal.imageset/Down Time Icon 24_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Down Time Icon_Normal.imageset/Down Time Icon 24_Normal.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Notifications Icon_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Notifications Icon_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Notifications Icon_Normal.imageset/Notifications Icon 24 _Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Notifications Icon_Normal.imageset/Notifications Icon 24 _Normal@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Notifications Icon_Normal.imageset/Notifications Icon 24_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Notifications Icon_Normal.imageset/Notifications Icon 24_Normal.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Options Icon_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Options Icon_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Options Icon_Normal.imageset/Options Icon 24 _Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Options Icon_Normal.imageset/Options Icon 24 _Normal@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Options Icon_Normal.imageset/Options Icon 24_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Options Icon_Normal.imageset/Options Icon 24_Normal.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Pick Up Icon_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Pick Up Icon_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Pick Up Icon_Normal.imageset/Pick Up Icon 24 _Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Pick Up Icon_Normal.imageset/Pick Up Icon 24 _Normal@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Pick Up Icon_Normal.imageset/Pick Up Icon 24_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Pick Up Icon_Normal.imageset/Pick Up Icon 24_Normal.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Requests Icon_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Requests Icon_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Requests Icon_Normal.imageset/Requests Icon 24_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Requests Icon_Normal.imageset/Requests Icon 24_Normal.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Requests Icon_Normal.imageset/Requests Icon 24_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/ScreenTime/Requests Icon_Normal.imageset/Requests Icon 24_Normal@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/SoftwareUpdate/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/SoftwareUpdate/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/SoftwareUpdate/SoftwareUpdate.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/SoftwareUpdate/SoftwareUpdate.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/SoftwareUpdate/SoftwareUpdate.imageset/SoftwareUpdate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/SoftwareUpdate/SoftwareUpdate.imageset/SoftwareUpdate.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/SoftwareUpdate/SoftwareUpdate.imageset/SoftwareUpdate2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/SoftwareUpdate/SoftwareUpdate.imageset/SoftwareUpdate2.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/TimeMachine/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/TimeMachine/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/TimeMachine/TimeMachine_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/TimeMachine/TimeMachine_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/TimeMachine/TimeMachine_Normal.imageset/Time Machine 128 _Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/TimeMachine/TimeMachine_Normal.imageset/Time Machine 128 _Normal@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Ignored Panes/TimeMachine/TimeMachine_Normal.imageset/Time Machine 128_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Ignored Panes/TimeMachine/TimeMachine_Normal.imageset/Time Machine 128_Normal.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Accessibility Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Accessibility Icon.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Accessibility Icon.imageset/UniversalAccessPref-6 (dragged).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Accessibility Icon.imageset/UniversalAccessPref-6 (dragged).png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Accessibility Icon.imageset/UniversalAccessPref-7 (dragged).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Accessibility Icon.imageset/UniversalAccessPref-7 (dragged).png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/AppIcon.appiconset/icon_128x128_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/AppIcon.appiconset/icon_128x128_Normal.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/AppIcon.appiconset/icon_128x128_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/AppIcon.appiconset/icon_128x128_Normal@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/AppIcon.appiconset/icon_16x16_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/AppIcon.appiconset/icon_16x16_Normal.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/AppIcon.appiconset/icon_16x16_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/AppIcon.appiconset/icon_16x16_Normal@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/AppIcon.appiconset/icon_256x256_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/AppIcon.appiconset/icon_256x256_Normal.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/AppIcon.appiconset/icon_256x256_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/AppIcon.appiconset/icon_256x256_Normal@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/AppIcon.appiconset/icon_32x32_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/AppIcon.appiconset/icon_32x32_Normal.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/AppIcon.appiconset/icon_32x32_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/AppIcon.appiconset/icon_32x32_Normal@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/AppIcon.appiconset/icon_512x512_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/AppIcon.appiconset/icon_512x512_Normal.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/AppIcon.appiconset/icon_512x512_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/AppIcon.appiconset/icon_512x512_Normal@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Apple ID Icon.imageset/Apple ID Icon 40_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Apple ID Icon.imageset/Apple ID Icon 40_Normal.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Apple ID Icon.imageset/Apple ID Icon 40_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Apple ID Icon.imageset/Apple ID Icon 40_Normal@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Apple ID Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Apple ID Icon.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Battery Icon.imageset/Battery40_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Battery Icon.imageset/Battery40_Normal.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Battery Icon.imageset/Battery80_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Battery Icon.imageset/Battery80_Normal@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Battery Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Battery Icon.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Bluetooth Icon.imageset/BluetoothIcon_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Bluetooth Icon.imageset/BluetoothIcon_Normal.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Bluetooth Icon.imageset/BluetoothIcon_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Bluetooth Icon.imageset/BluetoothIcon_Normal@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Bluetooth Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Bluetooth Icon.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Date & Time Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Date & Time Icon.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Date & Time Icon.imageset/DateTime_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Date & Time Icon.imageset/DateTime_Normal.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Date & Time Icon.imageset/DateTime_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Date & Time Icon.imageset/DateTime_Normal@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Desktop & Screensaver Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Desktop & Screensaver Icon.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Desktop & Screensaver Icon.imageset/DesktopAndScreenSaver Icon 40_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Desktop & Screensaver Icon.imageset/DesktopAndScreenSaver Icon 40_Normal.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Desktop & Screensaver Icon.imageset/DesktopAndScreenSaver Icon 40_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Desktop & Screensaver Icon.imageset/DesktopAndScreenSaver Icon 40_Normal@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Displays Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Displays Icon.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Displays Icon.imageset/DisplaysPrefIcon_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Displays Icon.imageset/DisplaysPrefIcon_Normal.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Displays Icon.imageset/DisplaysPrefIcon_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Displays Icon.imageset/DisplaysPrefIcon_Normal@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Dock & Menu Bar Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Dock & Menu Bar Icon.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Dock & Menu Bar Icon.imageset/DockIcon_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Dock & Menu Bar Icon.imageset/DockIcon_Normal.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Dock & Menu Bar Icon.imageset/DockIcon_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Dock & Menu Bar Icon.imageset/DockIcon_Normal@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Energy Saver Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Energy Saver Icon.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Energy Saver Icon.imageset/EnergySaver-6 (dragged).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Energy Saver Icon.imageset/EnergySaver-6 (dragged).png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Energy Saver Icon.imageset/EnergySaver-7 (dragged).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Energy Saver Icon.imageset/EnergySaver-7 (dragged).png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Family Sharing Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Family Sharing Icon.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Family Sharing Icon.imageset/_Family Sharing Top-Level Icon 40_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Family Sharing Icon.imageset/_Family Sharing Top-Level Icon 40_Normal.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Family Sharing Icon.imageset/_Family Sharing Top-Level Icon 40_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Family Sharing Icon.imageset/_Family Sharing Top-Level Icon 40_Normal@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/General Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/General Icon.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/General Icon.imageset/General Icon 40_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/General Icon.imageset/General Icon 40_Normal.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/General Icon.imageset/General Icon 40_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/General Icon.imageset/General Icon 40_Normal@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Keyboard Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Keyboard Icon.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Keyboard Icon.imageset/SystemPrefs_Keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Keyboard Icon.imageset/SystemPrefs_Keyboard.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Keyboard Icon.imageset/SystemPrefs_Keyboard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Keyboard Icon.imageset/SystemPrefs_Keyboard@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Language & Region Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Language & Region Icon.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Language & Region Icon.imageset/SystemPrefs_Localization_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Language & Region Icon.imageset/SystemPrefs_Localization_Normal.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Language & Region Icon.imageset/SystemPrefs_Localization_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Language & Region Icon.imageset/SystemPrefs_Localization_Normal@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Mission Control Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Mission Control Icon.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Mission Control Icon.imageset/MissionControlIcon_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Mission Control Icon.imageset/MissionControlIcon_Normal.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Mission Control Icon.imageset/MissionControlIcon_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Mission Control Icon.imageset/MissionControlIcon_Normal@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Mouse Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Mouse Icon.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Mouse Icon.imageset/SystemPrefs_Mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Mouse Icon.imageset/SystemPrefs_Mouse.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Mouse Icon.imageset/SystemPrefs_Mouse@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Mouse Icon.imageset/SystemPrefs_Mouse@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Network Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Network Icon.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Network Icon.imageset/Network Icon 40_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Network Icon.imageset/Network Icon 40_Normal.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Network Icon.imageset/Network Icon 40_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Network Icon.imageset/Network Icon 40_Normal@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Notifications Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Notifications Icon.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Notifications Icon.imageset/_Notifications Top-Level Icon 40_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Notifications Icon.imageset/_Notifications Top-Level Icon 40_Normal.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Notifications Icon.imageset/_Notifications Top-Level Icon 40_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Notifications Icon.imageset/_Notifications Top-Level Icon 40_Normal@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Printers & Scanners Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Printers & Scanners Icon.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Printers & Scanners Icon.imageset/PrintScanPref-6 (dragged).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Printers & Scanners Icon.imageset/PrintScanPref-6 (dragged).png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Printers & Scanners Icon.imageset/PrintScanPref-7 (dragged).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Printers & Scanners Icon.imageset/PrintScanPref-7 (dragged).png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Screen Time Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Screen Time Icon.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Screen Time Icon.imageset/ScreenTime-6 (dragged).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Screen Time Icon.imageset/ScreenTime-6 (dragged).png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Screen Time Icon.imageset/ScreenTime-7 (dragged).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Screen Time Icon.imageset/ScreenTime-7 (dragged).png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Security & Privacy Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Security & Privacy Icon.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Security & Privacy Icon.imageset/_Security and Privacy Top-Level Icon 40_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Security & Privacy Icon.imageset/_Security and Privacy Top-Level Icon 40_Normal.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Security & Privacy Icon.imageset/_Security and Privacy Top-Level Icon 40_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Security & Privacy Icon.imageset/_Security and Privacy Top-Level Icon 40_Normal@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Siri Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Siri Icon.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Siri Icon.imageset/System Preferences Icon 40_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Siri Icon.imageset/System Preferences Icon 40_Normal.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Siri Icon.imageset/System Preferences Icon 40_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Siri Icon.imageset/System Preferences Icon 40_Normal@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Software Update Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Software Update Icon.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Software Update Icon.imageset/Software Update Icon 40-1_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Software Update Icon.imageset/Software Update Icon 40-1_Normal.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Software Update Icon.imageset/Software Update Icon 40_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Software Update Icon.imageset/Software Update Icon 40_Normal@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Sound Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Sound Icon.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Sound Icon.imageset/Sound Icon 40_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Sound Icon.imageset/Sound Icon 40_Normal.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Sound Icon.imageset/Sound Icon 40_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Sound Icon.imageset/Sound Icon 40_Normal@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Spotlight Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Spotlight Icon.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Spotlight Icon.imageset/Spotlight Icon 40_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Spotlight Icon.imageset/Spotlight Icon 40_Normal.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Spotlight Icon.imageset/Spotlight Icon 40_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Spotlight Icon.imageset/Spotlight Icon 40_Normal@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Startup Disk Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Startup Disk Icon.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Startup Disk Icon.imageset/StartupDisk-4 (dragged).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Startup Disk Icon.imageset/StartupDisk-4 (dragged).png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Startup Disk Icon.imageset/StartupDisk-6 (dragged).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Startup Disk Icon.imageset/StartupDisk-6 (dragged).png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Startup Disk Icon.imageset/StartupDisk-7 (dragged).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Startup Disk Icon.imageset/StartupDisk-7 (dragged).png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Time Machine Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Time Machine Icon.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Time Machine Icon.imageset/_Time Machine Top-Level Icon 40 _Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Time Machine Icon.imageset/_Time Machine Top-Level Icon 40 _Normal@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Time Machine Icon.imageset/_Time Machine Top-Level Icon 40_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Time Machine Icon.imageset/_Time Machine Top-Level Icon 40_Normal.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Trackpad Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Trackpad Icon.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Trackpad Icon.imageset/SystemPrefs_Trackpad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Trackpad Icon.imageset/SystemPrefs_Trackpad.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Trackpad Icon.imageset/SystemPrefs_Trackpad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Trackpad Icon.imageset/SystemPrefs_Trackpad@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Users & Groups Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Users & Groups Icon.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Users & Groups Icon.imageset/User Groups Icon 40_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Users & Groups Icon.imageset/User Groups Icon 40_Normal.png -------------------------------------------------------------------------------- /Legacy Preferences/Assets.xcassets/Pane Icons/Users & Groups Icon.imageset/User Groups Icon 40_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Assets.xcassets/Pane Icons/Users & Groups Icon.imageset/User Groups Icon 40_Normal@2x.png -------------------------------------------------------------------------------- /Legacy Preferences/Ignored Panes/AppleIDPane.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Ignored Panes/AppleIDPane.swift -------------------------------------------------------------------------------- /Legacy Preferences/Ignored Panes/FamilySharingPane.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Ignored Panes/FamilySharingPane.swift -------------------------------------------------------------------------------- /Legacy Preferences/Ignored Panes/ScreenTimePane.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Ignored Panes/ScreenTimePane.swift -------------------------------------------------------------------------------- /Legacy Preferences/Ignored Panes/SoftwareUpdatePane.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Ignored Panes/SoftwareUpdatePane.swift -------------------------------------------------------------------------------- /Legacy Preferences/Ignored Panes/StartupDiskPane.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Ignored Panes/StartupDiskPane.swift -------------------------------------------------------------------------------- /Legacy Preferences/Ignored Panes/TimeMachinePane.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Ignored Panes/TimeMachinePane.swift -------------------------------------------------------------------------------- /Legacy Preferences/LegacyPreferencesApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/LegacyPreferencesApp.swift -------------------------------------------------------------------------------- /Legacy Preferences/Legacy_Preferences.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/Legacy_Preferences.entitlements -------------------------------------------------------------------------------- /Legacy Preferences/PaneGridItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/PaneGridItem.swift -------------------------------------------------------------------------------- /Legacy Preferences/PaneGridView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/PaneGridView.swift -------------------------------------------------------------------------------- /Legacy Preferences/PaneManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/PaneManager.swift -------------------------------------------------------------------------------- /Legacy Preferences/SearchField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/SearchField.swift -------------------------------------------------------------------------------- /Legacy Preferences/UnavailableLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Legacy Preferences/UnavailableLabel.swift -------------------------------------------------------------------------------- /MissionControlPane/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/MissionControlPane/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /MissionControlPane/Assets.xcassets/corners.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/MissionControlPane/Assets.xcassets/corners.imageset/Contents.json -------------------------------------------------------------------------------- /MissionControlPane/Assets.xcassets/corners.imageset/corners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/MissionControlPane/Assets.xcassets/corners.imageset/corners.png -------------------------------------------------------------------------------- /MissionControlPane/Assets.xcassets/corners.imageset/corners@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/MissionControlPane/Assets.xcassets/corners.imageset/corners@2x.png -------------------------------------------------------------------------------- /MissionControlPane/MissionControlPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/MissionControlPane/MissionControlPane.h -------------------------------------------------------------------------------- /MissionControlPane/PaneDefaults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/MissionControlPane/PaneDefaults.swift -------------------------------------------------------------------------------- /MissionControlPane/PaneView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/MissionControlPane/PaneView.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/README.md -------------------------------------------------------------------------------- /Shared/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Shared/Logger.swift -------------------------------------------------------------------------------- /Shared/PaneConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Shared/PaneConstants.swift -------------------------------------------------------------------------------- /Shared/Views/PaneSidebarItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Shared/Views/PaneSidebarItem.swift -------------------------------------------------------------------------------- /Shared/Views/PreferenceWellView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Shared/Views/PreferenceWellView.swift -------------------------------------------------------------------------------- /Shared/Views/VisualEffectView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/Shared/Views/VisualEffectView.swift -------------------------------------------------------------------------------- /images/appearance-pane-screenshot-2023-06-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/images/appearance-pane-screenshot-2023-06-13.png -------------------------------------------------------------------------------- /images/example-img-social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/images/example-img-social.png -------------------------------------------------------------------------------- /images/example-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/images/example-img.png -------------------------------------------------------------------------------- /images/system-preferences-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dehydratedpotato/LegacyPreferences/HEAD/images/system-preferences-icon.png --------------------------------------------------------------------------------