├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .vscode └── launch.json ├── CODEOWNERS ├── EvolutionGalleryContributing.md ├── LICENSE ├── Localization └── Localizable.xcstrings ├── Modules ├── .gitignore ├── .swiftpm │ └── xcode │ │ ├── package.xcworkspace │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ └── xcschemes │ │ └── OnlyAgent.xcscheme ├── Package.swift ├── Sources │ ├── Defines │ │ ├── LayoutDefine.swift │ │ ├── NotificationNames.swift │ │ ├── SwitchError.swift │ │ └── UnitType.swift │ ├── Design │ │ ├── AppKitProgressView.swift │ │ └── SecureInputView.swift │ ├── Extensions │ │ ├── Array++.swift │ │ ├── CGImage++.swift │ │ ├── Date+Today.swift │ │ ├── Float++.swift │ │ ├── IntBool.swift │ │ ├── LocalizedString++.swift │ │ ├── Logger++.swift │ │ ├── NSAppleEventDescriptor.swift │ │ ├── NSBezierPath++.swift │ │ ├── NSEvent++.swift │ │ ├── NSImage++.swift │ │ ├── NSImage+SymbolName.swift │ │ ├── NSSound_SystemVolumeExtension.swift │ │ ├── NSView++.swift │ │ ├── String++.swift │ │ ├── Task++.swift │ │ ├── URL++.swift │ │ ├── UserDefaultsKeys.swift │ │ ├── View+Erase.swift │ │ └── View+WindowDrag.swift │ ├── OnlyAgent │ │ ├── AgentCommand.swift │ │ ├── Dialogue │ │ │ ├── CurrentAIModelSharedKey.swift │ │ │ ├── PromptDialogueReducer.swift │ │ │ ├── PromptDialogueService.swift │ │ │ └── PromptDialogueView.swift │ │ ├── OnlyAgentLogger.swift │ │ └── Settings │ │ │ ├── AIModel.swift │ │ │ ├── ModelProviderSettingView.swift │ │ │ ├── OllamaSettings │ │ │ ├── OllamaDataModels.swift │ │ │ ├── OllamaRequestService.swift │ │ │ ├── OllamaSettingReducer.swift │ │ │ ├── OllamaSettingView.swift │ │ │ ├── OllamaSharedKey.swift │ │ │ └── OllamaTool.swift │ │ │ └── OpenAISettings │ │ │ ├── OpenAIDataModels.swift │ │ │ ├── OpenAIService.swift │ │ │ ├── OpenAISettingReducer.swift │ │ │ ├── OpenAISettingView.swift │ │ │ ├── OpenAISharedKey.swift │ │ │ └── OpenAITool.swift │ ├── OnlyControl │ │ ├── ControlItemView.swift │ │ ├── ControlItemViewState.swift │ │ ├── DashboardReducer.swift │ │ └── DashboardView.swift │ ├── Reorderable │ │ ├── Reorderable.swift │ │ ├── ReorderableDragRelocateDelegate.swift │ │ └── ReorderableDropOutsideDelegate.swift │ ├── Switches │ │ ├── Resources │ │ │ └── Assets.xcassets │ │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── ai_commander.imageset │ │ │ │ ├── AI_commander.png │ │ │ │ └── Contents.json │ │ │ │ ├── apple_music_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── apple-music-logo.png │ │ │ │ ├── bluetooth_off.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bluetoothOff.png │ │ │ │ ├── bluetooth_on.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bluetoothOn.png │ │ │ │ ├── darkmode_off.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── darkmodeoff.png │ │ │ │ ├── darkmode_on.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── darkmodeon.png │ │ │ │ ├── desktop_with_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── desktopcomputerwithicon.png │ │ │ │ ├── desktopcomputer.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── desktopcomputer.png │ │ │ │ ├── dock_recent_off.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── dock_recent_off.png │ │ │ │ ├── dock_recent_on.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── dock_recent_on.png │ │ │ │ ├── extension_off.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── hidden_extension.png │ │ │ │ ├── extension_on.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── show_extension.png │ │ │ │ ├── laptopnotchhidden.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── notchhidden.png │ │ │ │ ├── laptopwithnotch.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── withnotch.png │ │ │ │ ├── shortcuts_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── shortcuts-500.png │ │ │ │ ├── spotify_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Spotify_logo.png │ │ │ │ └── truetone.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── truetone.png │ │ ├── ShellCommandDefine.swift │ │ ├── SwitchProvider.swift │ │ └── SwitchType.swift │ └── Utilities │ │ └── LanguageManager.swift └── Tests │ └── ModulesTests │ └── ModulesTests.swift ├── OnlySwitch.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ ├── WorkspaceSettings.xcsettings │ │ └── swiftpm │ │ └── Package.resolved └── xcshareddata │ └── xcschemes │ ├── OnlySwitch.xcscheme │ └── OnlyWidgetExtension.xcscheme ├── OnlySwitch ├── AppDelegate.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon_128x128.png │ │ ├── icon_128x128@2x.png │ │ ├── icon_16x16.png │ │ ├── icon_16x16@2x.png │ │ ├── icon_256x256.png │ │ ├── icon_256x256@2x.png │ │ ├── icon_32x32.png │ │ ├── icon_32x32@2x.png │ │ ├── icon_512x512.png │ │ └── icon_512x512@2x.png │ ├── Contents.json │ ├── ads │ │ ├── CalendarX.imageset │ │ │ ├── CalendarX.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── QRCobot.imageset │ │ │ ├── Contents.json │ │ │ └── QRCobot80.png │ │ ├── WallCard.imageset │ │ │ ├── 167.png │ │ │ └── Contents.json │ │ ├── hdwh.imageset │ │ │ ├── Contents.json │ │ │ └── logo-hdwh-gr.png │ │ └── illa.imageset │ │ │ ├── Contents.json │ │ │ └── illa-logo.png │ ├── ai_commander.imageset │ │ ├── AI_commander.png │ │ └── Contents.json │ ├── apple_music_icon.imageset │ │ ├── Contents.json │ │ └── apple-music-logo.png │ ├── bluetooth_off.imageset │ │ ├── Contents.json │ │ └── bluetoothOff.png │ ├── bluetooth_on.imageset │ │ ├── Contents.json │ │ └── bluetoothOn.png │ ├── darkmode_off.imageset │ │ ├── Contents.json │ │ └── darkmodeoff.png │ ├── darkmode_on.imageset │ │ ├── Contents.json │ │ └── darkmodeon.png │ ├── desktop_with_icon.imageset │ │ ├── Contents.json │ │ └── desktopcomputerwithicon.png │ ├── desktopcomputer.imageset │ │ ├── Contents.json │ │ └── desktopcomputer.png │ ├── discord.imageset │ │ ├── Contents.json │ │ └── electron.png │ ├── dock_recent_off.imageset │ │ ├── Contents.json │ │ └── dock_recent_off.png │ ├── dock_recent_on.imageset │ │ ├── Contents.json │ │ └── dock_recent_on.png │ ├── extension_off.imageset │ │ ├── Contents.json │ │ └── hidden_extension.png │ ├── extension_on.imageset │ │ ├── Contents.json │ │ └── show_extension.png │ ├── fill.symbolset │ │ ├── Contents.json │ │ └── rectangle.fill.svg │ ├── laptopnotchhidden.imageset │ │ ├── Contents.json │ │ └── notchhidden.png │ ├── laptopwithnotch.imageset │ │ ├── Contents.json │ │ └── withnotch.png │ ├── mark_icon.imageset │ │ ├── Contents.json │ │ └── markicon.png │ ├── mark_icon_guide.imageset │ │ ├── Contents.json │ │ └── mark_icon_guide.png │ ├── mark_icon_off.imageset │ │ ├── Contents.json │ │ └── mark_icon_off.png │ ├── menubaricons │ │ ├── Contents.json │ │ ├── menubar_0.imageset │ │ │ ├── Contents.json │ │ │ └── menubar.png │ │ ├── menubar_1.imageset │ │ │ ├── Contents.json │ │ │ └── menubar_1.png │ │ ├── menubar_2.imageset │ │ │ ├── Contents.json │ │ │ └── menubar_2.png │ │ └── menubar_3.imageset │ │ │ ├── Contents.json │ │ │ └── menubar_3.png │ ├── only_switch.imageset │ │ ├── Contents.json │ │ └── icon_256x256@2x.png │ ├── shortcuts_icon.imageset │ │ ├── Contents.json │ │ └── shortcuts.png │ ├── spotify_icon.imageset │ │ ├── Contents.json │ │ └── Spotify_logo.png │ ├── sticker.imageset │ │ ├── Contents.json │ │ └── sticker.png │ ├── telegram.imageset │ │ ├── Contents.json │ │ └── telegram.png │ ├── translucent.symbolset │ │ ├── Contents.json │ │ └── rectangle.checkered.svg │ └── truetone.imageset │ │ ├── Contents.json │ │ └── truetone.png ├── CoreData │ ├── EvolutionCommandEntity+Fetch.swift │ ├── EvolutionCommandEntityLive.swift │ ├── OnlySwitch.xcdatamodeld │ │ ├── .xccurrentversion │ │ └── OnlySwitch.xcdatamodel │ │ │ └── contents │ ├── Persistence.swift │ └── RadioStations+Fetch.swift ├── Define │ ├── ColorDefine.swift │ ├── KeyboardShortcutsDefine.swift │ ├── MusicPlaybackState.swift │ ├── OpenWindow.swift │ ├── RefreshNotification.swift │ ├── SwitchListApperanceDefine.swift │ └── UserDefaultValue.swift ├── EverySwitch │ ├── AICommanderSwitch.swift │ ├── AirPodsSwitch.swift │ ├── AppleMusicSwitch.swift │ ├── AutohideDockSwitch.swift │ ├── AutohideMenuBarSwitch.swift │ ├── BackNoisesSwitch.swift │ ├── BluetoothSwitch.swift │ ├── DarkModeSwitch.swift │ ├── DimScreenSwitch.swift │ ├── DockRecentSwitch.swift │ ├── EjectDiscsSwitch.swift │ ├── EmptyPasteboardSwitch.swift │ ├── EmptyTrashSwitch.swift │ ├── FKeySwitch.swift │ ├── HiddenDesktopSwitch.swift │ ├── HiddenFilesSwitch.swift │ ├── HideMenubarIconsSwitch.swift │ ├── HideWindowsSwitch.swift │ ├── KeepAwakeSwitch.swift │ ├── KeyLightSwitch.swift │ ├── LowPowerModeSwitch.swift │ ├── MuteMicSwitch.swift │ ├── MuteSwitch.swift │ ├── NightShiftSwitch.swift │ ├── PomodoroTimerSwitch.swift │ ├── RadioStationSwitch.swift │ ├── ScreenSaverSwitch.swift │ ├── ScreenTestSwitch.swift │ ├── ShowExtensionNameSwitch.swift │ ├── ShowFinderPathbarSwitch.swift │ ├── ShowUserLibrarySwitch.swift │ ├── SmallLaunchpadIconSwitch.swift │ ├── SpotifySwitch.swift │ ├── SwitchManager.swift │ ├── SwitchType++.swift │ ├── TopNotchSwitch.swift │ ├── TopStickerSwitch.swift │ ├── TrueToneSwitch.swift │ └── XcodeCacheSwitch.swift ├── Features │ ├── HostWindowFinder.swift │ ├── OnlyControl │ │ ├── OnlyControlClient.swift │ │ ├── OnlyControlReducer.swift │ │ └── OnlyControlView.swift │ ├── OnlySwitchList │ │ ├── OnlySwitchListView.swift │ │ ├── RollingText.swift │ │ ├── SettingsWindowManager.swift │ │ ├── SwitchListModel.swift │ │ └── SwitchListVM.swift │ ├── PureColorView │ │ ├── ColorChangeGuide.swift │ │ ├── PureColorVM.swift │ │ └── PureColorView.swift │ ├── Settings │ │ ├── About │ │ │ ├── AboutVM.swift │ │ │ └── AboutView.swift │ │ ├── AirPods │ │ │ ├── AirPodsSettingVM.swift │ │ │ └── AirPodsSettingView.swift │ │ ├── BackNoises │ │ │ ├── BackNoisesSettingVM.swift │ │ │ └── BackNoisesSettingView.swift │ │ ├── Customize │ │ │ ├── CustomizeVM.swift │ │ │ └── CustomizeView.swift │ │ ├── DimScreen │ │ │ ├── DimScreenSettingVM.swift │ │ │ └── DimScreenSettingView.swift │ │ ├── Evolution │ │ │ ├── Evolution+Dependencies.swift │ │ │ ├── EvolutionAdapter.swift │ │ │ ├── EvolutionEditor │ │ │ │ ├── EvolutionCommandEditingReducer.swift │ │ │ │ ├── EvolutionCommandEditingView.swift │ │ │ │ ├── EvolutionEditorReducer.swift │ │ │ │ ├── EvolutionEditorService │ │ │ │ │ ├── EvolutionCommandService+Live.swift │ │ │ │ │ ├── EvolutionCommandService+Test.swift │ │ │ │ │ └── EvolutionCommandService.swift │ │ │ │ └── EvolutionEditorView.swift │ │ │ ├── EvolutionGallery │ │ │ │ ├── EvolutionGalleryAdaptor.swift │ │ │ │ ├── EvolutionGalleryItem.swift │ │ │ │ ├── EvolutionGalleryItemReducer.swift │ │ │ │ ├── EvolutionGalleryItemView.swift │ │ │ │ ├── EvolutionGalleryModel.swift │ │ │ │ ├── EvolutionGalleryReducer.swift │ │ │ │ ├── EvolutionGalleryService │ │ │ │ │ ├── EvolutionGalleryService+Live.swift │ │ │ │ │ ├── EvolutionGalleryService+Test.swift │ │ │ │ │ └── EvolutionGalleryService.swift │ │ │ │ └── EvolutionGalleryView.swift │ │ │ ├── EvolutionListService │ │ │ │ ├── EvolutionListService+Live.swift │ │ │ │ ├── EvolutionListService+Test.swift │ │ │ │ └── EvolutionListService.swift │ │ │ ├── EvolutionModel.swift │ │ │ ├── EvolutionReducer.swift │ │ │ ├── EvolutionRowReducer.swift │ │ │ ├── EvolutionRowView.swift │ │ │ └── EvolutionView.swift │ │ ├── General │ │ │ ├── GeneralModel.swift │ │ │ ├── GeneralVM.swift │ │ │ └── GeneralView.swift │ │ ├── HideMenubarIcons │ │ │ ├── HideMenubarIconsSettingVM.swift │ │ │ └── HideMenubarIconsSettingView.swift │ │ ├── KeepAwake │ │ │ ├── KeepAwakeSettingVM.swift │ │ │ └── KeepAwakeSettingView.swift │ │ ├── KeyLight │ │ │ ├── KeyLightFeature.swift │ │ │ ├── KeyLightService │ │ │ │ ├── KeyLightService+Live.swift │ │ │ │ └── KeyLightService.swift │ │ │ └── KeyLightView.swift │ │ ├── NightShift │ │ │ ├── NightShiftSettingsVM.swift │ │ │ └── NightShiftSettingsView.swift │ │ ├── PomodoroTimer │ │ │ ├── PomodoroTimerSettingModel.swift │ │ │ ├── PomodoroTimerSettingVM.swift │ │ │ └── PomodoroTimerSettingView.swift │ │ ├── Radio │ │ │ ├── RadioSettingModel.swift │ │ │ ├── RadioSettingVM.swift │ │ │ └── RadioSettingView.swift │ │ ├── SettingsView │ │ │ ├── SettingsVM.swift │ │ │ └── SettingsView.swift │ │ └── Shortcuts │ │ │ ├── ShortcutOnMarket.swift │ │ │ ├── ShortcutsSettingModel.swift │ │ │ ├── ShortcutsSettingVM.swift │ │ │ └── ShortcutsView.swift │ ├── SoundWave │ │ ├── BluredSoundWave.swift │ │ ├── SoundWaveModel.swift │ │ ├── SoundWaveVM.swift │ │ └── SoundWaveView.swift │ ├── StickerView │ │ ├── StickerModel.swift │ │ ├── StickerReducer.swift │ │ ├── StickerSharedKey.swift │ │ └── StickerView.swift │ ├── SwitchItem │ │ ├── BarProvider.swift │ │ ├── EvolutionItems │ │ │ ├── EvolutionBarVM.swift │ │ │ └── EvolutionBarView.swift │ │ ├── ShortcutsItem │ │ │ ├── ShortcutsBarModel.swift │ │ │ ├── ShortcutsBarVM.swift │ │ │ └── ShortcutsBarView.swift │ │ └── SwitchBar │ │ │ ├── AirPodsBatteryView.swift │ │ │ ├── CleanProgressView.swift │ │ │ ├── SwitchBarModel.swift │ │ │ ├── SwitchBarVM.swift │ │ │ ├── SwitchBarView.swift │ │ │ ├── SwitchToggle.swift │ │ │ └── TimerCountDownView.swift │ ├── Update │ │ ├── UpdateVM.swift │ │ └── UpdateView.swift │ └── VisualEffectView.swift ├── Header │ ├── CBBlueLightClient.h │ ├── CBTrueToneClient.h │ └── OnlySwitch-Bridging-Header.h ├── Info.plist ├── Model │ ├── AdsModel.swift │ ├── GitHubReleaseModel.swift │ └── Preferences.swift ├── Modifier │ ├── CursorModifier.swift │ ├── FocusModifier.swift │ ├── HiddenModifier.swift │ ├── ViewModify.swift │ └── WindowContentSizeModifier.swift ├── Networking │ ├── GitHubEndpoint.swift │ ├── GitHubInteractor.swift │ ├── GitHubPresenter.swift │ ├── GitHubRepositoryProtocol.swift │ └── RequestError.swift ├── OnlySwitch.entitlements ├── Player │ ├── BackNoisesPlayerItem │ │ ├── BackNoisesPlayerItem.swift │ │ ├── BackNoisesPlayerItemViewModel.swift │ │ └── BackNoisiesTrackManager.swift │ ├── CommonPlayer │ │ ├── AudioPlayer.swift │ │ ├── AudioSpectrum │ │ │ ├── RealtimeAnalyzer.swift │ │ │ └── SpectrumView.swift │ │ ├── AudioStreamer │ │ │ ├── Download │ │ │ │ ├── Downloader+URLSessionDelegate.swift │ │ │ │ ├── Downloader.swift │ │ │ │ ├── Downloading.swift │ │ │ │ ├── DownloadingDelegate.swift │ │ │ │ └── DownloadingState.swift │ │ │ ├── Parse │ │ │ │ ├── Parser+Packets.swift │ │ │ │ ├── Parser+PropertyListener.swift │ │ │ │ ├── Parser.swift │ │ │ │ ├── ParserError.swift │ │ │ │ └── Parsing.swift │ │ │ ├── Read │ │ │ │ ├── Reader+Converter.swift │ │ │ │ ├── Reader.swift │ │ │ │ ├── ReaderError.swift │ │ │ │ └── Reading.swift │ │ │ └── Stream │ │ │ │ ├── Streamer+DownloadableDelegate.swift │ │ │ │ ├── Streamer.swift │ │ │ │ ├── Streaming.swift │ │ │ │ ├── StreamingDelegate.swift │ │ │ │ └── StreamingState.swift │ │ ├── CommonPlayer.swift │ │ ├── JLASAudioPlayer+Streamer.swift │ │ ├── JLASAudioPlayer.swift │ │ ├── JLAVAudioPlayer.swift │ │ └── PlayerManager.swift │ ├── MusicAppPlayer │ │ ├── AppleMusic │ │ │ ├── AppleMusicPlayer │ │ │ │ └── AppleMusicPlayer.swift │ │ │ └── iTunesBridge │ │ │ │ ├── ObjC │ │ │ │ └── iTunes.h │ │ │ │ ├── iTunesBridge.swift │ │ │ │ └── iTunesScripting.swift │ │ ├── MusicPlayer.swift │ │ ├── MusicPlayerDelegate.swift │ │ ├── SBProtocols.swift │ │ └── Spotify │ │ │ ├── SpotifyBridge │ │ │ ├── ObjC │ │ │ │ └── Spotify.h │ │ │ ├── SpotifyBridge.swift │ │ │ └── SpotifyScripting.swift │ │ │ └── SpotifyPlayer │ │ │ └── SpotifyPlayer.swift │ └── RadioPlayerItem │ │ ├── RadioPlayerItem.swift │ │ └── RadioPlayerItemViewModel.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── Resource │ ├── BackgroundNoises │ │ ├── Brownian.mp3 │ │ ├── Crowd Urban.mp3 │ │ ├── Fireplace.mp3 │ │ ├── Forest Walking.mp3 │ │ ├── Harbor Wave.mp3 │ │ ├── Meadow Birds.mp3 │ │ ├── Meditation.mp3 │ │ ├── Motor Boat.mp3 │ │ ├── Pink Noise.mp3 │ │ ├── Soft Rain.mp3 │ │ └── White Noise.mp3 │ ├── Evolution │ │ └── EvolutionMarket.json │ ├── Latest_release_mock.json │ ├── Releases_mock.json │ ├── ShortcutsMarket │ │ └── ShortcutsMarket.json │ ├── battery-airpods-monterey.sh │ ├── mixkit-alert-bells-echo-765.wav │ └── mixkit-bell-notification-933.wav ├── StatusBar │ ├── EventMonitor.swift │ └── StatusBarController.swift ├── Utilities │ ├── BluetoothDevicesManager.swift │ ├── CBTrueToneClient++.swift │ ├── CurrentScreen.swift │ ├── DisplayManager.swift │ ├── EffectSoundHelper.swift │ ├── IOService.swift │ ├── KeyboardBrightness │ │ ├── BrightnessControl.h │ │ ├── BrightnessControl.m │ │ ├── KeyboardBrightnessClient.h │ │ ├── KeyboardManager.h │ │ └── KeyboardManager.m │ ├── MetadataExtractorError.swift │ ├── SendEmail.swift │ ├── SupportedLanguage.swift │ ├── SystemInfo.swift │ ├── Updater.swift │ └── WallpaperManager.swift └── ViewModel │ └── PreferencesObserver.swift ├── OnlySwitchTests ├── EverySwitchTests.swift ├── Info.plist └── OnlySwitchTests.swift ├── OnlyWidget ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── WidgetBackground.colorset │ │ └── Contents.json │ ├── ai_commander.imageset │ │ ├── AI_commander.png │ │ └── Contents.json │ ├── apple_music_icon.imageset │ │ ├── Contents.json │ │ └── apple-music-logo.png │ ├── bluetooth_off.imageset │ │ ├── Contents.json │ │ └── bluetoothOff.png │ ├── bluetooth_on.imageset │ │ ├── Contents.json │ │ └── bluetoothOn.png │ ├── darkmode_off.imageset │ │ ├── Contents.json │ │ └── darkmodeoff.png │ ├── darkmode_on.imageset │ │ ├── Contents.json │ │ └── darkmodeon.png │ ├── desktop_with_icon.imageset │ │ ├── Contents.json │ │ └── desktopcomputerwithicon.png │ ├── desktopcomputer.imageset │ │ ├── Contents.json │ │ └── desktopcomputer.png │ ├── dock_recent_off.imageset │ │ ├── Contents.json │ │ └── dock_recent_off.png │ ├── dock_recent_on.imageset │ │ ├── Contents.json │ │ └── dock_recent_on.png │ ├── extension_off.imageset │ │ ├── Contents.json │ │ └── hidden_extension.png │ ├── extension_on.imageset │ │ ├── Contents.json │ │ └── show_extension.png │ ├── laptopnotchhidden.imageset │ │ ├── Contents.json │ │ └── notchhidden.png │ ├── laptopwithnotch.imageset │ │ ├── Contents.json │ │ └── withnotch.png │ ├── logo.imageset │ │ ├── Contents.json │ │ └── icon_256x256@2x.png │ ├── mark_icon.imageset │ │ ├── Contents.json │ │ └── markicon.png │ ├── shortcuts_icon.imageset │ │ ├── Contents.json │ │ └── shortcuts-500.png │ ├── spotify_icon.imageset │ │ ├── Contents.json │ │ └── Spotify_logo.png │ ├── sticker.imageset │ │ ├── Contents.json │ │ └── sticker.png │ ├── test.imageset │ │ ├── Contents.json │ │ └── mappa-cina.jpeg │ └── truetone.imageset │ │ ├── Contents.json │ │ └── truetone.png ├── Info.plist ├── Localization │ └── Localizable.xcstrings ├── OnlyWidget.entitlements ├── OnlyWidgetBundle.swift ├── Views │ ├── ErrorView.swift │ ├── SmallWidget.swift │ └── SpectrumView.swift └── Widgets │ ├── BuiltIn │ ├── Intents │ │ ├── BuiltInSwitchEntity.swift │ │ └── SelectBuiltInSwitchesIntent.swift │ └── OnlyWidgetBuiltIn.swift │ └── Evolution │ ├── EvolutionWidgetModel.swift │ ├── Intents │ ├── EvolutionEntity.swift │ └── SelectEvolutionIntent.swift │ └── OnlyWidgetEvolutionProvider.swift ├── README.md └── ShortcutsGalleryContributing.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @jacklandrin @shayanbo @leonmtg @dadameng 2 | -------------------------------------------------------------------------------- /EvolutionGalleryContributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/EvolutionGalleryContributing.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/LICENSE -------------------------------------------------------------------------------- /Localization/Localizable.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Localization/Localizable.xcstrings -------------------------------------------------------------------------------- /Modules/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/.gitignore -------------------------------------------------------------------------------- /Modules/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Modules/.swiftpm/xcode/xcshareddata/xcschemes/OnlyAgent.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/.swiftpm/xcode/xcshareddata/xcschemes/OnlyAgent.xcscheme -------------------------------------------------------------------------------- /Modules/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Package.swift -------------------------------------------------------------------------------- /Modules/Sources/Defines/LayoutDefine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Defines/LayoutDefine.swift -------------------------------------------------------------------------------- /Modules/Sources/Defines/NotificationNames.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Defines/NotificationNames.swift -------------------------------------------------------------------------------- /Modules/Sources/Defines/SwitchError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Defines/SwitchError.swift -------------------------------------------------------------------------------- /Modules/Sources/Defines/UnitType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Defines/UnitType.swift -------------------------------------------------------------------------------- /Modules/Sources/Design/AppKitProgressView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Design/AppKitProgressView.swift -------------------------------------------------------------------------------- /Modules/Sources/Design/SecureInputView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Design/SecureInputView.swift -------------------------------------------------------------------------------- /Modules/Sources/Extensions/Array++.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Extensions/Array++.swift -------------------------------------------------------------------------------- /Modules/Sources/Extensions/CGImage++.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Extensions/CGImage++.swift -------------------------------------------------------------------------------- /Modules/Sources/Extensions/Date+Today.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Extensions/Date+Today.swift -------------------------------------------------------------------------------- /Modules/Sources/Extensions/Float++.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Extensions/Float++.swift -------------------------------------------------------------------------------- /Modules/Sources/Extensions/IntBool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Extensions/IntBool.swift -------------------------------------------------------------------------------- /Modules/Sources/Extensions/LocalizedString++.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Extensions/LocalizedString++.swift -------------------------------------------------------------------------------- /Modules/Sources/Extensions/Logger++.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Extensions/Logger++.swift -------------------------------------------------------------------------------- /Modules/Sources/Extensions/NSAppleEventDescriptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Extensions/NSAppleEventDescriptor.swift -------------------------------------------------------------------------------- /Modules/Sources/Extensions/NSBezierPath++.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Extensions/NSBezierPath++.swift -------------------------------------------------------------------------------- /Modules/Sources/Extensions/NSEvent++.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Extensions/NSEvent++.swift -------------------------------------------------------------------------------- /Modules/Sources/Extensions/NSImage++.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Extensions/NSImage++.swift -------------------------------------------------------------------------------- /Modules/Sources/Extensions/NSImage+SymbolName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Extensions/NSImage+SymbolName.swift -------------------------------------------------------------------------------- /Modules/Sources/Extensions/NSSound_SystemVolumeExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Extensions/NSSound_SystemVolumeExtension.swift -------------------------------------------------------------------------------- /Modules/Sources/Extensions/NSView++.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Extensions/NSView++.swift -------------------------------------------------------------------------------- /Modules/Sources/Extensions/String++.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Extensions/String++.swift -------------------------------------------------------------------------------- /Modules/Sources/Extensions/Task++.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Extensions/Task++.swift -------------------------------------------------------------------------------- /Modules/Sources/Extensions/URL++.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Extensions/URL++.swift -------------------------------------------------------------------------------- /Modules/Sources/Extensions/UserDefaultsKeys.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Extensions/UserDefaultsKeys.swift -------------------------------------------------------------------------------- /Modules/Sources/Extensions/View+Erase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Extensions/View+Erase.swift -------------------------------------------------------------------------------- /Modules/Sources/Extensions/View+WindowDrag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Extensions/View+WindowDrag.swift -------------------------------------------------------------------------------- /Modules/Sources/OnlyAgent/AgentCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/OnlyAgent/AgentCommand.swift -------------------------------------------------------------------------------- /Modules/Sources/OnlyAgent/Dialogue/CurrentAIModelSharedKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/OnlyAgent/Dialogue/CurrentAIModelSharedKey.swift -------------------------------------------------------------------------------- /Modules/Sources/OnlyAgent/Dialogue/PromptDialogueReducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/OnlyAgent/Dialogue/PromptDialogueReducer.swift -------------------------------------------------------------------------------- /Modules/Sources/OnlyAgent/Dialogue/PromptDialogueService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/OnlyAgent/Dialogue/PromptDialogueService.swift -------------------------------------------------------------------------------- /Modules/Sources/OnlyAgent/Dialogue/PromptDialogueView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/OnlyAgent/Dialogue/PromptDialogueView.swift -------------------------------------------------------------------------------- /Modules/Sources/OnlyAgent/OnlyAgentLogger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/OnlyAgent/OnlyAgentLogger.swift -------------------------------------------------------------------------------- /Modules/Sources/OnlyAgent/Settings/AIModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/OnlyAgent/Settings/AIModel.swift -------------------------------------------------------------------------------- /Modules/Sources/OnlyAgent/Settings/ModelProviderSettingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/OnlyAgent/Settings/ModelProviderSettingView.swift -------------------------------------------------------------------------------- /Modules/Sources/OnlyAgent/Settings/OllamaSettings/OllamaDataModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/OnlyAgent/Settings/OllamaSettings/OllamaDataModels.swift -------------------------------------------------------------------------------- /Modules/Sources/OnlyAgent/Settings/OllamaSettings/OllamaRequestService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/OnlyAgent/Settings/OllamaSettings/OllamaRequestService.swift -------------------------------------------------------------------------------- /Modules/Sources/OnlyAgent/Settings/OllamaSettings/OllamaSettingReducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/OnlyAgent/Settings/OllamaSettings/OllamaSettingReducer.swift -------------------------------------------------------------------------------- /Modules/Sources/OnlyAgent/Settings/OllamaSettings/OllamaSettingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/OnlyAgent/Settings/OllamaSettings/OllamaSettingView.swift -------------------------------------------------------------------------------- /Modules/Sources/OnlyAgent/Settings/OllamaSettings/OllamaSharedKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/OnlyAgent/Settings/OllamaSettings/OllamaSharedKey.swift -------------------------------------------------------------------------------- /Modules/Sources/OnlyAgent/Settings/OllamaSettings/OllamaTool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/OnlyAgent/Settings/OllamaSettings/OllamaTool.swift -------------------------------------------------------------------------------- /Modules/Sources/OnlyAgent/Settings/OpenAISettings/OpenAIDataModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/OnlyAgent/Settings/OpenAISettings/OpenAIDataModels.swift -------------------------------------------------------------------------------- /Modules/Sources/OnlyAgent/Settings/OpenAISettings/OpenAIService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/OnlyAgent/Settings/OpenAISettings/OpenAIService.swift -------------------------------------------------------------------------------- /Modules/Sources/OnlyAgent/Settings/OpenAISettings/OpenAISettingReducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/OnlyAgent/Settings/OpenAISettings/OpenAISettingReducer.swift -------------------------------------------------------------------------------- /Modules/Sources/OnlyAgent/Settings/OpenAISettings/OpenAISettingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/OnlyAgent/Settings/OpenAISettings/OpenAISettingView.swift -------------------------------------------------------------------------------- /Modules/Sources/OnlyAgent/Settings/OpenAISettings/OpenAISharedKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/OnlyAgent/Settings/OpenAISettings/OpenAISharedKey.swift -------------------------------------------------------------------------------- /Modules/Sources/OnlyAgent/Settings/OpenAISettings/OpenAITool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/OnlyAgent/Settings/OpenAISettings/OpenAITool.swift -------------------------------------------------------------------------------- /Modules/Sources/OnlyControl/ControlItemView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/OnlyControl/ControlItemView.swift -------------------------------------------------------------------------------- /Modules/Sources/OnlyControl/ControlItemViewState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/OnlyControl/ControlItemViewState.swift -------------------------------------------------------------------------------- /Modules/Sources/OnlyControl/DashboardReducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/OnlyControl/DashboardReducer.swift -------------------------------------------------------------------------------- /Modules/Sources/OnlyControl/DashboardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/OnlyControl/DashboardView.swift -------------------------------------------------------------------------------- /Modules/Sources/Reorderable/Reorderable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Reorderable/Reorderable.swift -------------------------------------------------------------------------------- /Modules/Sources/Reorderable/ReorderableDragRelocateDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Reorderable/ReorderableDragRelocateDelegate.swift -------------------------------------------------------------------------------- /Modules/Sources/Reorderable/ReorderableDropOutsideDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Reorderable/ReorderableDropOutsideDelegate.swift -------------------------------------------------------------------------------- /Modules/Sources/Switches/Resources/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Switches/Resources/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Modules/Sources/Switches/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Switches/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Modules/Sources/Switches/Resources/Assets.xcassets/ai_commander.imageset/AI_commander.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Switches/Resources/Assets.xcassets/ai_commander.imageset/AI_commander.png -------------------------------------------------------------------------------- /Modules/Sources/Switches/Resources/Assets.xcassets/ai_commander.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Switches/Resources/Assets.xcassets/ai_commander.imageset/Contents.json -------------------------------------------------------------------------------- /Modules/Sources/Switches/Resources/Assets.xcassets/apple_music_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Switches/Resources/Assets.xcassets/apple_music_icon.imageset/Contents.json -------------------------------------------------------------------------------- /Modules/Sources/Switches/Resources/Assets.xcassets/apple_music_icon.imageset/apple-music-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Switches/Resources/Assets.xcassets/apple_music_icon.imageset/apple-music-logo.png -------------------------------------------------------------------------------- /Modules/Sources/Switches/Resources/Assets.xcassets/bluetooth_off.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Switches/Resources/Assets.xcassets/bluetooth_off.imageset/Contents.json -------------------------------------------------------------------------------- /Modules/Sources/Switches/Resources/Assets.xcassets/bluetooth_off.imageset/bluetoothOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Switches/Resources/Assets.xcassets/bluetooth_off.imageset/bluetoothOff.png -------------------------------------------------------------------------------- /Modules/Sources/Switches/Resources/Assets.xcassets/bluetooth_on.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Switches/Resources/Assets.xcassets/bluetooth_on.imageset/Contents.json -------------------------------------------------------------------------------- /Modules/Sources/Switches/Resources/Assets.xcassets/bluetooth_on.imageset/bluetoothOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Switches/Resources/Assets.xcassets/bluetooth_on.imageset/bluetoothOn.png -------------------------------------------------------------------------------- /Modules/Sources/Switches/Resources/Assets.xcassets/darkmode_off.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Switches/Resources/Assets.xcassets/darkmode_off.imageset/Contents.json -------------------------------------------------------------------------------- /Modules/Sources/Switches/Resources/Assets.xcassets/darkmode_off.imageset/darkmodeoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Switches/Resources/Assets.xcassets/darkmode_off.imageset/darkmodeoff.png -------------------------------------------------------------------------------- /Modules/Sources/Switches/Resources/Assets.xcassets/darkmode_on.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Switches/Resources/Assets.xcassets/darkmode_on.imageset/Contents.json -------------------------------------------------------------------------------- /Modules/Sources/Switches/Resources/Assets.xcassets/darkmode_on.imageset/darkmodeon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Switches/Resources/Assets.xcassets/darkmode_on.imageset/darkmodeon.png -------------------------------------------------------------------------------- /Modules/Sources/Switches/Resources/Assets.xcassets/desktop_with_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Switches/Resources/Assets.xcassets/desktop_with_icon.imageset/Contents.json -------------------------------------------------------------------------------- /Modules/Sources/Switches/Resources/Assets.xcassets/desktop_with_icon.imageset/desktopcomputerwithicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Switches/Resources/Assets.xcassets/desktop_with_icon.imageset/desktopcomputerwithicon.png -------------------------------------------------------------------------------- /Modules/Sources/Switches/Resources/Assets.xcassets/desktopcomputer.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Switches/Resources/Assets.xcassets/desktopcomputer.imageset/Contents.json -------------------------------------------------------------------------------- /Modules/Sources/Switches/Resources/Assets.xcassets/desktopcomputer.imageset/desktopcomputer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Switches/Resources/Assets.xcassets/desktopcomputer.imageset/desktopcomputer.png -------------------------------------------------------------------------------- /Modules/Sources/Switches/Resources/Assets.xcassets/dock_recent_off.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Switches/Resources/Assets.xcassets/dock_recent_off.imageset/Contents.json -------------------------------------------------------------------------------- /Modules/Sources/Switches/Resources/Assets.xcassets/dock_recent_off.imageset/dock_recent_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Switches/Resources/Assets.xcassets/dock_recent_off.imageset/dock_recent_off.png -------------------------------------------------------------------------------- /Modules/Sources/Switches/Resources/Assets.xcassets/dock_recent_on.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Switches/Resources/Assets.xcassets/dock_recent_on.imageset/Contents.json -------------------------------------------------------------------------------- /Modules/Sources/Switches/Resources/Assets.xcassets/dock_recent_on.imageset/dock_recent_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Switches/Resources/Assets.xcassets/dock_recent_on.imageset/dock_recent_on.png -------------------------------------------------------------------------------- /Modules/Sources/Switches/Resources/Assets.xcassets/extension_off.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Switches/Resources/Assets.xcassets/extension_off.imageset/Contents.json -------------------------------------------------------------------------------- /Modules/Sources/Switches/Resources/Assets.xcassets/extension_off.imageset/hidden_extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Switches/Resources/Assets.xcassets/extension_off.imageset/hidden_extension.png -------------------------------------------------------------------------------- /Modules/Sources/Switches/Resources/Assets.xcassets/extension_on.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Switches/Resources/Assets.xcassets/extension_on.imageset/Contents.json -------------------------------------------------------------------------------- /Modules/Sources/Switches/Resources/Assets.xcassets/extension_on.imageset/show_extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Switches/Resources/Assets.xcassets/extension_on.imageset/show_extension.png -------------------------------------------------------------------------------- /Modules/Sources/Switches/Resources/Assets.xcassets/laptopnotchhidden.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Switches/Resources/Assets.xcassets/laptopnotchhidden.imageset/Contents.json -------------------------------------------------------------------------------- /Modules/Sources/Switches/Resources/Assets.xcassets/laptopnotchhidden.imageset/notchhidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Switches/Resources/Assets.xcassets/laptopnotchhidden.imageset/notchhidden.png -------------------------------------------------------------------------------- /Modules/Sources/Switches/Resources/Assets.xcassets/laptopwithnotch.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Switches/Resources/Assets.xcassets/laptopwithnotch.imageset/Contents.json -------------------------------------------------------------------------------- /Modules/Sources/Switches/Resources/Assets.xcassets/laptopwithnotch.imageset/withnotch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Switches/Resources/Assets.xcassets/laptopwithnotch.imageset/withnotch.png -------------------------------------------------------------------------------- /Modules/Sources/Switches/Resources/Assets.xcassets/shortcuts_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Switches/Resources/Assets.xcassets/shortcuts_icon.imageset/Contents.json -------------------------------------------------------------------------------- /Modules/Sources/Switches/Resources/Assets.xcassets/shortcuts_icon.imageset/shortcuts-500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Switches/Resources/Assets.xcassets/shortcuts_icon.imageset/shortcuts-500.png -------------------------------------------------------------------------------- /Modules/Sources/Switches/Resources/Assets.xcassets/spotify_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Switches/Resources/Assets.xcassets/spotify_icon.imageset/Contents.json -------------------------------------------------------------------------------- /Modules/Sources/Switches/Resources/Assets.xcassets/spotify_icon.imageset/Spotify_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Switches/Resources/Assets.xcassets/spotify_icon.imageset/Spotify_logo.png -------------------------------------------------------------------------------- /Modules/Sources/Switches/Resources/Assets.xcassets/truetone.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Switches/Resources/Assets.xcassets/truetone.imageset/Contents.json -------------------------------------------------------------------------------- /Modules/Sources/Switches/Resources/Assets.xcassets/truetone.imageset/truetone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Switches/Resources/Assets.xcassets/truetone.imageset/truetone.png -------------------------------------------------------------------------------- /Modules/Sources/Switches/ShellCommandDefine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Switches/ShellCommandDefine.swift -------------------------------------------------------------------------------- /Modules/Sources/Switches/SwitchProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Switches/SwitchProvider.swift -------------------------------------------------------------------------------- /Modules/Sources/Switches/SwitchType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Switches/SwitchType.swift -------------------------------------------------------------------------------- /Modules/Sources/Utilities/LanguageManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Sources/Utilities/LanguageManager.swift -------------------------------------------------------------------------------- /Modules/Tests/ModulesTests/ModulesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/Modules/Tests/ModulesTests/ModulesTests.swift -------------------------------------------------------------------------------- /OnlySwitch.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /OnlySwitch.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /OnlySwitch.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /OnlySwitch.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /OnlySwitch.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /OnlySwitch.xcodeproj/xcshareddata/xcschemes/OnlySwitch.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch.xcodeproj/xcshareddata/xcschemes/OnlySwitch.xcscheme -------------------------------------------------------------------------------- /OnlySwitch.xcodeproj/xcshareddata/xcschemes/OnlyWidgetExtension.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch.xcodeproj/xcshareddata/xcschemes/OnlyWidgetExtension.xcscheme -------------------------------------------------------------------------------- /OnlySwitch/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/AppDelegate.swift -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/AppIcon.appiconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/AppIcon.appiconset/icon_128x128.png -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/AppIcon.appiconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/AppIcon.appiconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/AppIcon.appiconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/AppIcon.appiconset/icon_16x16.png -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/AppIcon.appiconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/AppIcon.appiconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/AppIcon.appiconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/AppIcon.appiconset/icon_256x256.png -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/AppIcon.appiconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/AppIcon.appiconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/AppIcon.appiconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/AppIcon.appiconset/icon_32x32.png -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/AppIcon.appiconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/AppIcon.appiconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/AppIcon.appiconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/AppIcon.appiconset/icon_512x512.png -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/AppIcon.appiconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/AppIcon.appiconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/ads/CalendarX.imageset/CalendarX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/ads/CalendarX.imageset/CalendarX.png -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/ads/CalendarX.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/ads/CalendarX.imageset/Contents.json -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/ads/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/ads/Contents.json -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/ads/QRCobot.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/ads/QRCobot.imageset/Contents.json -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/ads/QRCobot.imageset/QRCobot80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/ads/QRCobot.imageset/QRCobot80.png -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/ads/WallCard.imageset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/ads/WallCard.imageset/167.png -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/ads/WallCard.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/ads/WallCard.imageset/Contents.json -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/ads/hdwh.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/ads/hdwh.imageset/Contents.json -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/ads/hdwh.imageset/logo-hdwh-gr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/ads/hdwh.imageset/logo-hdwh-gr.png -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/ads/illa.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/ads/illa.imageset/Contents.json -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/ads/illa.imageset/illa-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/ads/illa.imageset/illa-logo.png -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/ai_commander.imageset/AI_commander.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/ai_commander.imageset/AI_commander.png -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/ai_commander.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/ai_commander.imageset/Contents.json -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/apple_music_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/apple_music_icon.imageset/Contents.json -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/apple_music_icon.imageset/apple-music-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/apple_music_icon.imageset/apple-music-logo.png -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/bluetooth_off.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/bluetooth_off.imageset/Contents.json -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/bluetooth_off.imageset/bluetoothOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/bluetooth_off.imageset/bluetoothOff.png -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/bluetooth_on.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/bluetooth_on.imageset/Contents.json -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/bluetooth_on.imageset/bluetoothOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/bluetooth_on.imageset/bluetoothOn.png -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/darkmode_off.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/darkmode_off.imageset/Contents.json -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/darkmode_off.imageset/darkmodeoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/darkmode_off.imageset/darkmodeoff.png -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/darkmode_on.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/darkmode_on.imageset/Contents.json -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/darkmode_on.imageset/darkmodeon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/darkmode_on.imageset/darkmodeon.png -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/desktop_with_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/desktop_with_icon.imageset/Contents.json -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/desktop_with_icon.imageset/desktopcomputerwithicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/desktop_with_icon.imageset/desktopcomputerwithicon.png -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/desktopcomputer.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/desktopcomputer.imageset/Contents.json -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/desktopcomputer.imageset/desktopcomputer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/desktopcomputer.imageset/desktopcomputer.png -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/discord.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/discord.imageset/Contents.json -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/discord.imageset/electron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/discord.imageset/electron.png -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/dock_recent_off.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/dock_recent_off.imageset/Contents.json -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/dock_recent_off.imageset/dock_recent_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/dock_recent_off.imageset/dock_recent_off.png -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/dock_recent_on.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/dock_recent_on.imageset/Contents.json -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/dock_recent_on.imageset/dock_recent_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/dock_recent_on.imageset/dock_recent_on.png -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/extension_off.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/extension_off.imageset/Contents.json -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/extension_off.imageset/hidden_extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/extension_off.imageset/hidden_extension.png -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/extension_on.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/extension_on.imageset/Contents.json -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/extension_on.imageset/show_extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/extension_on.imageset/show_extension.png -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/fill.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/fill.symbolset/Contents.json -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/fill.symbolset/rectangle.fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/fill.symbolset/rectangle.fill.svg -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/laptopnotchhidden.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/laptopnotchhidden.imageset/Contents.json -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/laptopnotchhidden.imageset/notchhidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/laptopnotchhidden.imageset/notchhidden.png -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/laptopwithnotch.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/laptopwithnotch.imageset/Contents.json -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/laptopwithnotch.imageset/withnotch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/laptopwithnotch.imageset/withnotch.png -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/mark_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/mark_icon.imageset/Contents.json -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/mark_icon.imageset/markicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/mark_icon.imageset/markicon.png -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/mark_icon_guide.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/mark_icon_guide.imageset/Contents.json -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/mark_icon_guide.imageset/mark_icon_guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/mark_icon_guide.imageset/mark_icon_guide.png -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/mark_icon_off.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/mark_icon_off.imageset/Contents.json -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/mark_icon_off.imageset/mark_icon_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/mark_icon_off.imageset/mark_icon_off.png -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/menubaricons/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/menubaricons/Contents.json -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/menubaricons/menubar_0.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/menubaricons/menubar_0.imageset/Contents.json -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/menubaricons/menubar_0.imageset/menubar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/menubaricons/menubar_0.imageset/menubar.png -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/menubaricons/menubar_1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/menubaricons/menubar_1.imageset/Contents.json -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/menubaricons/menubar_1.imageset/menubar_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/menubaricons/menubar_1.imageset/menubar_1.png -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/menubaricons/menubar_2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/menubaricons/menubar_2.imageset/Contents.json -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/menubaricons/menubar_2.imageset/menubar_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/menubaricons/menubar_2.imageset/menubar_2.png -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/menubaricons/menubar_3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/menubaricons/menubar_3.imageset/Contents.json -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/menubaricons/menubar_3.imageset/menubar_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/menubaricons/menubar_3.imageset/menubar_3.png -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/only_switch.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/only_switch.imageset/Contents.json -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/only_switch.imageset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/only_switch.imageset/icon_256x256@2x.png -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/shortcuts_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/shortcuts_icon.imageset/Contents.json -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/shortcuts_icon.imageset/shortcuts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/shortcuts_icon.imageset/shortcuts.png -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/spotify_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/spotify_icon.imageset/Contents.json -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/spotify_icon.imageset/Spotify_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/spotify_icon.imageset/Spotify_logo.png -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/sticker.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/sticker.imageset/Contents.json -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/sticker.imageset/sticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/sticker.imageset/sticker.png -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/telegram.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/telegram.imageset/Contents.json -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/telegram.imageset/telegram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/telegram.imageset/telegram.png -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/translucent.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/translucent.symbolset/Contents.json -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/translucent.symbolset/rectangle.checkered.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/translucent.symbolset/rectangle.checkered.svg -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/truetone.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/truetone.imageset/Contents.json -------------------------------------------------------------------------------- /OnlySwitch/Assets.xcassets/truetone.imageset/truetone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Assets.xcassets/truetone.imageset/truetone.png -------------------------------------------------------------------------------- /OnlySwitch/CoreData/EvolutionCommandEntity+Fetch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/CoreData/EvolutionCommandEntity+Fetch.swift -------------------------------------------------------------------------------- /OnlySwitch/CoreData/EvolutionCommandEntityLive.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/CoreData/EvolutionCommandEntityLive.swift -------------------------------------------------------------------------------- /OnlySwitch/CoreData/OnlySwitch.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/CoreData/OnlySwitch.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /OnlySwitch/CoreData/OnlySwitch.xcdatamodeld/OnlySwitch.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/CoreData/OnlySwitch.xcdatamodeld/OnlySwitch.xcdatamodel/contents -------------------------------------------------------------------------------- /OnlySwitch/CoreData/Persistence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/CoreData/Persistence.swift -------------------------------------------------------------------------------- /OnlySwitch/CoreData/RadioStations+Fetch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/CoreData/RadioStations+Fetch.swift -------------------------------------------------------------------------------- /OnlySwitch/Define/ColorDefine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Define/ColorDefine.swift -------------------------------------------------------------------------------- /OnlySwitch/Define/KeyboardShortcutsDefine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Define/KeyboardShortcutsDefine.swift -------------------------------------------------------------------------------- /OnlySwitch/Define/MusicPlaybackState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Define/MusicPlaybackState.swift -------------------------------------------------------------------------------- /OnlySwitch/Define/OpenWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Define/OpenWindow.swift -------------------------------------------------------------------------------- /OnlySwitch/Define/RefreshNotification.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Define/RefreshNotification.swift -------------------------------------------------------------------------------- /OnlySwitch/Define/SwitchListApperanceDefine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Define/SwitchListApperanceDefine.swift -------------------------------------------------------------------------------- /OnlySwitch/Define/UserDefaultValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Define/UserDefaultValue.swift -------------------------------------------------------------------------------- /OnlySwitch/EverySwitch/AICommanderSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/EverySwitch/AICommanderSwitch.swift -------------------------------------------------------------------------------- /OnlySwitch/EverySwitch/AirPodsSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/EverySwitch/AirPodsSwitch.swift -------------------------------------------------------------------------------- /OnlySwitch/EverySwitch/AppleMusicSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/EverySwitch/AppleMusicSwitch.swift -------------------------------------------------------------------------------- /OnlySwitch/EverySwitch/AutohideDockSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/EverySwitch/AutohideDockSwitch.swift -------------------------------------------------------------------------------- /OnlySwitch/EverySwitch/AutohideMenuBarSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/EverySwitch/AutohideMenuBarSwitch.swift -------------------------------------------------------------------------------- /OnlySwitch/EverySwitch/BackNoisesSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/EverySwitch/BackNoisesSwitch.swift -------------------------------------------------------------------------------- /OnlySwitch/EverySwitch/BluetoothSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/EverySwitch/BluetoothSwitch.swift -------------------------------------------------------------------------------- /OnlySwitch/EverySwitch/DarkModeSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/EverySwitch/DarkModeSwitch.swift -------------------------------------------------------------------------------- /OnlySwitch/EverySwitch/DimScreenSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/EverySwitch/DimScreenSwitch.swift -------------------------------------------------------------------------------- /OnlySwitch/EverySwitch/DockRecentSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/EverySwitch/DockRecentSwitch.swift -------------------------------------------------------------------------------- /OnlySwitch/EverySwitch/EjectDiscsSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/EverySwitch/EjectDiscsSwitch.swift -------------------------------------------------------------------------------- /OnlySwitch/EverySwitch/EmptyPasteboardSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/EverySwitch/EmptyPasteboardSwitch.swift -------------------------------------------------------------------------------- /OnlySwitch/EverySwitch/EmptyTrashSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/EverySwitch/EmptyTrashSwitch.swift -------------------------------------------------------------------------------- /OnlySwitch/EverySwitch/FKeySwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/EverySwitch/FKeySwitch.swift -------------------------------------------------------------------------------- /OnlySwitch/EverySwitch/HiddenDesktopSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/EverySwitch/HiddenDesktopSwitch.swift -------------------------------------------------------------------------------- /OnlySwitch/EverySwitch/HiddenFilesSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/EverySwitch/HiddenFilesSwitch.swift -------------------------------------------------------------------------------- /OnlySwitch/EverySwitch/HideMenubarIconsSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/EverySwitch/HideMenubarIconsSwitch.swift -------------------------------------------------------------------------------- /OnlySwitch/EverySwitch/HideWindowsSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/EverySwitch/HideWindowsSwitch.swift -------------------------------------------------------------------------------- /OnlySwitch/EverySwitch/KeepAwakeSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/EverySwitch/KeepAwakeSwitch.swift -------------------------------------------------------------------------------- /OnlySwitch/EverySwitch/KeyLightSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/EverySwitch/KeyLightSwitch.swift -------------------------------------------------------------------------------- /OnlySwitch/EverySwitch/LowPowerModeSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/EverySwitch/LowPowerModeSwitch.swift -------------------------------------------------------------------------------- /OnlySwitch/EverySwitch/MuteMicSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/EverySwitch/MuteMicSwitch.swift -------------------------------------------------------------------------------- /OnlySwitch/EverySwitch/MuteSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/EverySwitch/MuteSwitch.swift -------------------------------------------------------------------------------- /OnlySwitch/EverySwitch/NightShiftSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/EverySwitch/NightShiftSwitch.swift -------------------------------------------------------------------------------- /OnlySwitch/EverySwitch/PomodoroTimerSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/EverySwitch/PomodoroTimerSwitch.swift -------------------------------------------------------------------------------- /OnlySwitch/EverySwitch/RadioStationSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/EverySwitch/RadioStationSwitch.swift -------------------------------------------------------------------------------- /OnlySwitch/EverySwitch/ScreenSaverSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/EverySwitch/ScreenSaverSwitch.swift -------------------------------------------------------------------------------- /OnlySwitch/EverySwitch/ScreenTestSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/EverySwitch/ScreenTestSwitch.swift -------------------------------------------------------------------------------- /OnlySwitch/EverySwitch/ShowExtensionNameSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/EverySwitch/ShowExtensionNameSwitch.swift -------------------------------------------------------------------------------- /OnlySwitch/EverySwitch/ShowFinderPathbarSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/EverySwitch/ShowFinderPathbarSwitch.swift -------------------------------------------------------------------------------- /OnlySwitch/EverySwitch/ShowUserLibrarySwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/EverySwitch/ShowUserLibrarySwitch.swift -------------------------------------------------------------------------------- /OnlySwitch/EverySwitch/SmallLaunchpadIconSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/EverySwitch/SmallLaunchpadIconSwitch.swift -------------------------------------------------------------------------------- /OnlySwitch/EverySwitch/SpotifySwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/EverySwitch/SpotifySwitch.swift -------------------------------------------------------------------------------- /OnlySwitch/EverySwitch/SwitchManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/EverySwitch/SwitchManager.swift -------------------------------------------------------------------------------- /OnlySwitch/EverySwitch/SwitchType++.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/EverySwitch/SwitchType++.swift -------------------------------------------------------------------------------- /OnlySwitch/EverySwitch/TopNotchSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/EverySwitch/TopNotchSwitch.swift -------------------------------------------------------------------------------- /OnlySwitch/EverySwitch/TopStickerSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/EverySwitch/TopStickerSwitch.swift -------------------------------------------------------------------------------- /OnlySwitch/EverySwitch/TrueToneSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/EverySwitch/TrueToneSwitch.swift -------------------------------------------------------------------------------- /OnlySwitch/EverySwitch/XcodeCacheSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/EverySwitch/XcodeCacheSwitch.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/HostWindowFinder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/HostWindowFinder.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/OnlyControl/OnlyControlClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/OnlyControl/OnlyControlClient.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/OnlyControl/OnlyControlReducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/OnlyControl/OnlyControlReducer.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/OnlyControl/OnlyControlView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/OnlyControl/OnlyControlView.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/OnlySwitchList/OnlySwitchListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/OnlySwitchList/OnlySwitchListView.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/OnlySwitchList/RollingText.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/OnlySwitchList/RollingText.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/OnlySwitchList/SettingsWindowManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/OnlySwitchList/SettingsWindowManager.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/OnlySwitchList/SwitchListModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/OnlySwitchList/SwitchListModel.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/OnlySwitchList/SwitchListVM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/OnlySwitchList/SwitchListVM.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/PureColorView/ColorChangeGuide.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/PureColorView/ColorChangeGuide.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/PureColorView/PureColorVM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/PureColorView/PureColorVM.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/PureColorView/PureColorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/PureColorView/PureColorView.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/About/AboutVM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/About/AboutVM.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/About/AboutView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/About/AboutView.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/AirPods/AirPodsSettingVM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/AirPods/AirPodsSettingVM.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/AirPods/AirPodsSettingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/AirPods/AirPodsSettingView.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/BackNoises/BackNoisesSettingVM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/BackNoises/BackNoisesSettingVM.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/BackNoises/BackNoisesSettingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/BackNoises/BackNoisesSettingView.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/Customize/CustomizeVM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/Customize/CustomizeVM.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/Customize/CustomizeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/Customize/CustomizeView.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/DimScreen/DimScreenSettingVM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/DimScreen/DimScreenSettingVM.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/DimScreen/DimScreenSettingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/DimScreen/DimScreenSettingView.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/Evolution/Evolution+Dependencies.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/Evolution/Evolution+Dependencies.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/Evolution/EvolutionAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/Evolution/EvolutionAdapter.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/Evolution/EvolutionEditor/EvolutionCommandEditingReducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/Evolution/EvolutionEditor/EvolutionCommandEditingReducer.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/Evolution/EvolutionEditor/EvolutionCommandEditingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/Evolution/EvolutionEditor/EvolutionCommandEditingView.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/Evolution/EvolutionEditor/EvolutionEditorReducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/Evolution/EvolutionEditor/EvolutionEditorReducer.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/Evolution/EvolutionEditor/EvolutionEditorService/EvolutionCommandService+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/Evolution/EvolutionEditor/EvolutionEditorService/EvolutionCommandService+Live.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/Evolution/EvolutionEditor/EvolutionEditorService/EvolutionCommandService+Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/Evolution/EvolutionEditor/EvolutionEditorService/EvolutionCommandService+Test.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/Evolution/EvolutionEditor/EvolutionEditorService/EvolutionCommandService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/Evolution/EvolutionEditor/EvolutionEditorService/EvolutionCommandService.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/Evolution/EvolutionEditor/EvolutionEditorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/Evolution/EvolutionEditor/EvolutionEditorView.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/Evolution/EvolutionGallery/EvolutionGalleryAdaptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/Evolution/EvolutionGallery/EvolutionGalleryAdaptor.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/Evolution/EvolutionGallery/EvolutionGalleryItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/Evolution/EvolutionGallery/EvolutionGalleryItem.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/Evolution/EvolutionGallery/EvolutionGalleryItemReducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/Evolution/EvolutionGallery/EvolutionGalleryItemReducer.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/Evolution/EvolutionGallery/EvolutionGalleryItemView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/Evolution/EvolutionGallery/EvolutionGalleryItemView.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/Evolution/EvolutionGallery/EvolutionGalleryModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/Evolution/EvolutionGallery/EvolutionGalleryModel.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/Evolution/EvolutionGallery/EvolutionGalleryReducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/Evolution/EvolutionGallery/EvolutionGalleryReducer.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/Evolution/EvolutionGallery/EvolutionGalleryService/EvolutionGalleryService+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/Evolution/EvolutionGallery/EvolutionGalleryService/EvolutionGalleryService+Live.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/Evolution/EvolutionGallery/EvolutionGalleryService/EvolutionGalleryService+Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/Evolution/EvolutionGallery/EvolutionGalleryService/EvolutionGalleryService+Test.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/Evolution/EvolutionGallery/EvolutionGalleryService/EvolutionGalleryService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/Evolution/EvolutionGallery/EvolutionGalleryService/EvolutionGalleryService.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/Evolution/EvolutionGallery/EvolutionGalleryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/Evolution/EvolutionGallery/EvolutionGalleryView.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/Evolution/EvolutionListService/EvolutionListService+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/Evolution/EvolutionListService/EvolutionListService+Live.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/Evolution/EvolutionListService/EvolutionListService+Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/Evolution/EvolutionListService/EvolutionListService+Test.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/Evolution/EvolutionListService/EvolutionListService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/Evolution/EvolutionListService/EvolutionListService.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/Evolution/EvolutionModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/Evolution/EvolutionModel.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/Evolution/EvolutionReducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/Evolution/EvolutionReducer.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/Evolution/EvolutionRowReducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/Evolution/EvolutionRowReducer.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/Evolution/EvolutionRowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/Evolution/EvolutionRowView.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/Evolution/EvolutionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/Evolution/EvolutionView.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/General/GeneralModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/General/GeneralModel.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/General/GeneralVM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/General/GeneralVM.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/General/GeneralView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/General/GeneralView.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/HideMenubarIcons/HideMenubarIconsSettingVM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/HideMenubarIcons/HideMenubarIconsSettingVM.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/HideMenubarIcons/HideMenubarIconsSettingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/HideMenubarIcons/HideMenubarIconsSettingView.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/KeepAwake/KeepAwakeSettingVM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/KeepAwake/KeepAwakeSettingVM.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/KeepAwake/KeepAwakeSettingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/KeepAwake/KeepAwakeSettingView.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/KeyLight/KeyLightFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/KeyLight/KeyLightFeature.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/KeyLight/KeyLightService/KeyLightService+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/KeyLight/KeyLightService/KeyLightService+Live.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/KeyLight/KeyLightService/KeyLightService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/KeyLight/KeyLightService/KeyLightService.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/KeyLight/KeyLightView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/KeyLight/KeyLightView.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/NightShift/NightShiftSettingsVM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/NightShift/NightShiftSettingsVM.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/NightShift/NightShiftSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/NightShift/NightShiftSettingsView.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/PomodoroTimer/PomodoroTimerSettingModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/PomodoroTimer/PomodoroTimerSettingModel.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/PomodoroTimer/PomodoroTimerSettingVM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/PomodoroTimer/PomodoroTimerSettingVM.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/PomodoroTimer/PomodoroTimerSettingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/PomodoroTimer/PomodoroTimerSettingView.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/Radio/RadioSettingModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/Radio/RadioSettingModel.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/Radio/RadioSettingVM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/Radio/RadioSettingVM.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/Radio/RadioSettingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/Radio/RadioSettingView.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/SettingsView/SettingsVM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/SettingsView/SettingsVM.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/SettingsView/SettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/SettingsView/SettingsView.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/Shortcuts/ShortcutOnMarket.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/Shortcuts/ShortcutOnMarket.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/Shortcuts/ShortcutsSettingModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/Shortcuts/ShortcutsSettingModel.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/Shortcuts/ShortcutsSettingVM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/Shortcuts/ShortcutsSettingVM.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Settings/Shortcuts/ShortcutsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Settings/Shortcuts/ShortcutsView.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/SoundWave/BluredSoundWave.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/SoundWave/BluredSoundWave.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/SoundWave/SoundWaveModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/SoundWave/SoundWaveModel.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/SoundWave/SoundWaveVM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/SoundWave/SoundWaveVM.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/SoundWave/SoundWaveView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/SoundWave/SoundWaveView.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/StickerView/StickerModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/StickerView/StickerModel.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/StickerView/StickerReducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/StickerView/StickerReducer.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/StickerView/StickerSharedKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/StickerView/StickerSharedKey.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/StickerView/StickerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/StickerView/StickerView.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/SwitchItem/BarProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/SwitchItem/BarProvider.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/SwitchItem/EvolutionItems/EvolutionBarVM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/SwitchItem/EvolutionItems/EvolutionBarVM.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/SwitchItem/EvolutionItems/EvolutionBarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/SwitchItem/EvolutionItems/EvolutionBarView.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/SwitchItem/ShortcutsItem/ShortcutsBarModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/SwitchItem/ShortcutsItem/ShortcutsBarModel.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/SwitchItem/ShortcutsItem/ShortcutsBarVM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/SwitchItem/ShortcutsItem/ShortcutsBarVM.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/SwitchItem/ShortcutsItem/ShortcutsBarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/SwitchItem/ShortcutsItem/ShortcutsBarView.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/SwitchItem/SwitchBar/AirPodsBatteryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/SwitchItem/SwitchBar/AirPodsBatteryView.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/SwitchItem/SwitchBar/CleanProgressView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/SwitchItem/SwitchBar/CleanProgressView.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/SwitchItem/SwitchBar/SwitchBarModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/SwitchItem/SwitchBar/SwitchBarModel.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/SwitchItem/SwitchBar/SwitchBarVM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/SwitchItem/SwitchBar/SwitchBarVM.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/SwitchItem/SwitchBar/SwitchBarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/SwitchItem/SwitchBar/SwitchBarView.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/SwitchItem/SwitchBar/SwitchToggle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/SwitchItem/SwitchBar/SwitchToggle.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/SwitchItem/SwitchBar/TimerCountDownView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/SwitchItem/SwitchBar/TimerCountDownView.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Update/UpdateVM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Update/UpdateVM.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/Update/UpdateView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/Update/UpdateView.swift -------------------------------------------------------------------------------- /OnlySwitch/Features/VisualEffectView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Features/VisualEffectView.swift -------------------------------------------------------------------------------- /OnlySwitch/Header/CBBlueLightClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Header/CBBlueLightClient.h -------------------------------------------------------------------------------- /OnlySwitch/Header/CBTrueToneClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Header/CBTrueToneClient.h -------------------------------------------------------------------------------- /OnlySwitch/Header/OnlySwitch-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Header/OnlySwitch-Bridging-Header.h -------------------------------------------------------------------------------- /OnlySwitch/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Info.plist -------------------------------------------------------------------------------- /OnlySwitch/Model/AdsModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Model/AdsModel.swift -------------------------------------------------------------------------------- /OnlySwitch/Model/GitHubReleaseModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Model/GitHubReleaseModel.swift -------------------------------------------------------------------------------- /OnlySwitch/Model/Preferences.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Model/Preferences.swift -------------------------------------------------------------------------------- /OnlySwitch/Modifier/CursorModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Modifier/CursorModifier.swift -------------------------------------------------------------------------------- /OnlySwitch/Modifier/FocusModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Modifier/FocusModifier.swift -------------------------------------------------------------------------------- /OnlySwitch/Modifier/HiddenModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Modifier/HiddenModifier.swift -------------------------------------------------------------------------------- /OnlySwitch/Modifier/ViewModify.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Modifier/ViewModify.swift -------------------------------------------------------------------------------- /OnlySwitch/Modifier/WindowContentSizeModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Modifier/WindowContentSizeModifier.swift -------------------------------------------------------------------------------- /OnlySwitch/Networking/GitHubEndpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Networking/GitHubEndpoint.swift -------------------------------------------------------------------------------- /OnlySwitch/Networking/GitHubInteractor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Networking/GitHubInteractor.swift -------------------------------------------------------------------------------- /OnlySwitch/Networking/GitHubPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Networking/GitHubPresenter.swift -------------------------------------------------------------------------------- /OnlySwitch/Networking/GitHubRepositoryProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Networking/GitHubRepositoryProtocol.swift -------------------------------------------------------------------------------- /OnlySwitch/Networking/RequestError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Networking/RequestError.swift -------------------------------------------------------------------------------- /OnlySwitch/OnlySwitch.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/OnlySwitch.entitlements -------------------------------------------------------------------------------- /OnlySwitch/Player/BackNoisesPlayerItem/BackNoisesPlayerItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Player/BackNoisesPlayerItem/BackNoisesPlayerItem.swift -------------------------------------------------------------------------------- /OnlySwitch/Player/BackNoisesPlayerItem/BackNoisesPlayerItemViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Player/BackNoisesPlayerItem/BackNoisesPlayerItemViewModel.swift -------------------------------------------------------------------------------- /OnlySwitch/Player/BackNoisesPlayerItem/BackNoisiesTrackManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Player/BackNoisesPlayerItem/BackNoisiesTrackManager.swift -------------------------------------------------------------------------------- /OnlySwitch/Player/CommonPlayer/AudioPlayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Player/CommonPlayer/AudioPlayer.swift -------------------------------------------------------------------------------- /OnlySwitch/Player/CommonPlayer/AudioSpectrum/RealtimeAnalyzer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Player/CommonPlayer/AudioSpectrum/RealtimeAnalyzer.swift -------------------------------------------------------------------------------- /OnlySwitch/Player/CommonPlayer/AudioSpectrum/SpectrumView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Player/CommonPlayer/AudioSpectrum/SpectrumView.swift -------------------------------------------------------------------------------- /OnlySwitch/Player/CommonPlayer/AudioStreamer/Download/Downloader+URLSessionDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Player/CommonPlayer/AudioStreamer/Download/Downloader+URLSessionDelegate.swift -------------------------------------------------------------------------------- /OnlySwitch/Player/CommonPlayer/AudioStreamer/Download/Downloader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Player/CommonPlayer/AudioStreamer/Download/Downloader.swift -------------------------------------------------------------------------------- /OnlySwitch/Player/CommonPlayer/AudioStreamer/Download/Downloading.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Player/CommonPlayer/AudioStreamer/Download/Downloading.swift -------------------------------------------------------------------------------- /OnlySwitch/Player/CommonPlayer/AudioStreamer/Download/DownloadingDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Player/CommonPlayer/AudioStreamer/Download/DownloadingDelegate.swift -------------------------------------------------------------------------------- /OnlySwitch/Player/CommonPlayer/AudioStreamer/Download/DownloadingState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Player/CommonPlayer/AudioStreamer/Download/DownloadingState.swift -------------------------------------------------------------------------------- /OnlySwitch/Player/CommonPlayer/AudioStreamer/Parse/Parser+Packets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Player/CommonPlayer/AudioStreamer/Parse/Parser+Packets.swift -------------------------------------------------------------------------------- /OnlySwitch/Player/CommonPlayer/AudioStreamer/Parse/Parser+PropertyListener.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Player/CommonPlayer/AudioStreamer/Parse/Parser+PropertyListener.swift -------------------------------------------------------------------------------- /OnlySwitch/Player/CommonPlayer/AudioStreamer/Parse/Parser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Player/CommonPlayer/AudioStreamer/Parse/Parser.swift -------------------------------------------------------------------------------- /OnlySwitch/Player/CommonPlayer/AudioStreamer/Parse/ParserError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Player/CommonPlayer/AudioStreamer/Parse/ParserError.swift -------------------------------------------------------------------------------- /OnlySwitch/Player/CommonPlayer/AudioStreamer/Parse/Parsing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Player/CommonPlayer/AudioStreamer/Parse/Parsing.swift -------------------------------------------------------------------------------- /OnlySwitch/Player/CommonPlayer/AudioStreamer/Read/Reader+Converter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Player/CommonPlayer/AudioStreamer/Read/Reader+Converter.swift -------------------------------------------------------------------------------- /OnlySwitch/Player/CommonPlayer/AudioStreamer/Read/Reader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Player/CommonPlayer/AudioStreamer/Read/Reader.swift -------------------------------------------------------------------------------- /OnlySwitch/Player/CommonPlayer/AudioStreamer/Read/ReaderError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Player/CommonPlayer/AudioStreamer/Read/ReaderError.swift -------------------------------------------------------------------------------- /OnlySwitch/Player/CommonPlayer/AudioStreamer/Read/Reading.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Player/CommonPlayer/AudioStreamer/Read/Reading.swift -------------------------------------------------------------------------------- /OnlySwitch/Player/CommonPlayer/AudioStreamer/Stream/Streamer+DownloadableDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Player/CommonPlayer/AudioStreamer/Stream/Streamer+DownloadableDelegate.swift -------------------------------------------------------------------------------- /OnlySwitch/Player/CommonPlayer/AudioStreamer/Stream/Streamer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Player/CommonPlayer/AudioStreamer/Stream/Streamer.swift -------------------------------------------------------------------------------- /OnlySwitch/Player/CommonPlayer/AudioStreamer/Stream/Streaming.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Player/CommonPlayer/AudioStreamer/Stream/Streaming.swift -------------------------------------------------------------------------------- /OnlySwitch/Player/CommonPlayer/AudioStreamer/Stream/StreamingDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Player/CommonPlayer/AudioStreamer/Stream/StreamingDelegate.swift -------------------------------------------------------------------------------- /OnlySwitch/Player/CommonPlayer/AudioStreamer/Stream/StreamingState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Player/CommonPlayer/AudioStreamer/Stream/StreamingState.swift -------------------------------------------------------------------------------- /OnlySwitch/Player/CommonPlayer/CommonPlayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Player/CommonPlayer/CommonPlayer.swift -------------------------------------------------------------------------------- /OnlySwitch/Player/CommonPlayer/JLASAudioPlayer+Streamer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Player/CommonPlayer/JLASAudioPlayer+Streamer.swift -------------------------------------------------------------------------------- /OnlySwitch/Player/CommonPlayer/JLASAudioPlayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Player/CommonPlayer/JLASAudioPlayer.swift -------------------------------------------------------------------------------- /OnlySwitch/Player/CommonPlayer/JLAVAudioPlayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Player/CommonPlayer/JLAVAudioPlayer.swift -------------------------------------------------------------------------------- /OnlySwitch/Player/CommonPlayer/PlayerManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Player/CommonPlayer/PlayerManager.swift -------------------------------------------------------------------------------- /OnlySwitch/Player/MusicAppPlayer/AppleMusic/AppleMusicPlayer/AppleMusicPlayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Player/MusicAppPlayer/AppleMusic/AppleMusicPlayer/AppleMusicPlayer.swift -------------------------------------------------------------------------------- /OnlySwitch/Player/MusicAppPlayer/AppleMusic/iTunesBridge/ObjC/iTunes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Player/MusicAppPlayer/AppleMusic/iTunesBridge/ObjC/iTunes.h -------------------------------------------------------------------------------- /OnlySwitch/Player/MusicAppPlayer/AppleMusic/iTunesBridge/iTunesBridge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Player/MusicAppPlayer/AppleMusic/iTunesBridge/iTunesBridge.swift -------------------------------------------------------------------------------- /OnlySwitch/Player/MusicAppPlayer/AppleMusic/iTunesBridge/iTunesScripting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Player/MusicAppPlayer/AppleMusic/iTunesBridge/iTunesScripting.swift -------------------------------------------------------------------------------- /OnlySwitch/Player/MusicAppPlayer/MusicPlayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Player/MusicAppPlayer/MusicPlayer.swift -------------------------------------------------------------------------------- /OnlySwitch/Player/MusicAppPlayer/MusicPlayerDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Player/MusicAppPlayer/MusicPlayerDelegate.swift -------------------------------------------------------------------------------- /OnlySwitch/Player/MusicAppPlayer/SBProtocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Player/MusicAppPlayer/SBProtocols.swift -------------------------------------------------------------------------------- /OnlySwitch/Player/MusicAppPlayer/Spotify/SpotifyBridge/ObjC/Spotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Player/MusicAppPlayer/Spotify/SpotifyBridge/ObjC/Spotify.h -------------------------------------------------------------------------------- /OnlySwitch/Player/MusicAppPlayer/Spotify/SpotifyBridge/SpotifyBridge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Player/MusicAppPlayer/Spotify/SpotifyBridge/SpotifyBridge.swift -------------------------------------------------------------------------------- /OnlySwitch/Player/MusicAppPlayer/Spotify/SpotifyBridge/SpotifyScripting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Player/MusicAppPlayer/Spotify/SpotifyBridge/SpotifyScripting.swift -------------------------------------------------------------------------------- /OnlySwitch/Player/MusicAppPlayer/Spotify/SpotifyPlayer/SpotifyPlayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Player/MusicAppPlayer/Spotify/SpotifyPlayer/SpotifyPlayer.swift -------------------------------------------------------------------------------- /OnlySwitch/Player/RadioPlayerItem/RadioPlayerItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Player/RadioPlayerItem/RadioPlayerItem.swift -------------------------------------------------------------------------------- /OnlySwitch/Player/RadioPlayerItem/RadioPlayerItemViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Player/RadioPlayerItem/RadioPlayerItemViewModel.swift -------------------------------------------------------------------------------- /OnlySwitch/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /OnlySwitch/Resource/BackgroundNoises/Brownian.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Resource/BackgroundNoises/Brownian.mp3 -------------------------------------------------------------------------------- /OnlySwitch/Resource/BackgroundNoises/Crowd Urban.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Resource/BackgroundNoises/Crowd Urban.mp3 -------------------------------------------------------------------------------- /OnlySwitch/Resource/BackgroundNoises/Fireplace.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Resource/BackgroundNoises/Fireplace.mp3 -------------------------------------------------------------------------------- /OnlySwitch/Resource/BackgroundNoises/Forest Walking.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Resource/BackgroundNoises/Forest Walking.mp3 -------------------------------------------------------------------------------- /OnlySwitch/Resource/BackgroundNoises/Harbor Wave.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Resource/BackgroundNoises/Harbor Wave.mp3 -------------------------------------------------------------------------------- /OnlySwitch/Resource/BackgroundNoises/Meadow Birds.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Resource/BackgroundNoises/Meadow Birds.mp3 -------------------------------------------------------------------------------- /OnlySwitch/Resource/BackgroundNoises/Meditation.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Resource/BackgroundNoises/Meditation.mp3 -------------------------------------------------------------------------------- /OnlySwitch/Resource/BackgroundNoises/Motor Boat.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Resource/BackgroundNoises/Motor Boat.mp3 -------------------------------------------------------------------------------- /OnlySwitch/Resource/BackgroundNoises/Pink Noise.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Resource/BackgroundNoises/Pink Noise.mp3 -------------------------------------------------------------------------------- /OnlySwitch/Resource/BackgroundNoises/Soft Rain.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Resource/BackgroundNoises/Soft Rain.mp3 -------------------------------------------------------------------------------- /OnlySwitch/Resource/BackgroundNoises/White Noise.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Resource/BackgroundNoises/White Noise.mp3 -------------------------------------------------------------------------------- /OnlySwitch/Resource/Evolution/EvolutionMarket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Resource/Evolution/EvolutionMarket.json -------------------------------------------------------------------------------- /OnlySwitch/Resource/Latest_release_mock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Resource/Latest_release_mock.json -------------------------------------------------------------------------------- /OnlySwitch/Resource/Releases_mock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Resource/Releases_mock.json -------------------------------------------------------------------------------- /OnlySwitch/Resource/ShortcutsMarket/ShortcutsMarket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Resource/ShortcutsMarket/ShortcutsMarket.json -------------------------------------------------------------------------------- /OnlySwitch/Resource/battery-airpods-monterey.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Resource/battery-airpods-monterey.sh -------------------------------------------------------------------------------- /OnlySwitch/Resource/mixkit-alert-bells-echo-765.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Resource/mixkit-alert-bells-echo-765.wav -------------------------------------------------------------------------------- /OnlySwitch/Resource/mixkit-bell-notification-933.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Resource/mixkit-bell-notification-933.wav -------------------------------------------------------------------------------- /OnlySwitch/StatusBar/EventMonitor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/StatusBar/EventMonitor.swift -------------------------------------------------------------------------------- /OnlySwitch/StatusBar/StatusBarController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/StatusBar/StatusBarController.swift -------------------------------------------------------------------------------- /OnlySwitch/Utilities/BluetoothDevicesManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Utilities/BluetoothDevicesManager.swift -------------------------------------------------------------------------------- /OnlySwitch/Utilities/CBTrueToneClient++.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Utilities/CBTrueToneClient++.swift -------------------------------------------------------------------------------- /OnlySwitch/Utilities/CurrentScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Utilities/CurrentScreen.swift -------------------------------------------------------------------------------- /OnlySwitch/Utilities/DisplayManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Utilities/DisplayManager.swift -------------------------------------------------------------------------------- /OnlySwitch/Utilities/EffectSoundHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Utilities/EffectSoundHelper.swift -------------------------------------------------------------------------------- /OnlySwitch/Utilities/IOService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Utilities/IOService.swift -------------------------------------------------------------------------------- /OnlySwitch/Utilities/KeyboardBrightness/BrightnessControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Utilities/KeyboardBrightness/BrightnessControl.h -------------------------------------------------------------------------------- /OnlySwitch/Utilities/KeyboardBrightness/BrightnessControl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Utilities/KeyboardBrightness/BrightnessControl.m -------------------------------------------------------------------------------- /OnlySwitch/Utilities/KeyboardBrightness/KeyboardBrightnessClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Utilities/KeyboardBrightness/KeyboardBrightnessClient.h -------------------------------------------------------------------------------- /OnlySwitch/Utilities/KeyboardBrightness/KeyboardManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Utilities/KeyboardBrightness/KeyboardManager.h -------------------------------------------------------------------------------- /OnlySwitch/Utilities/KeyboardBrightness/KeyboardManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Utilities/KeyboardBrightness/KeyboardManager.m -------------------------------------------------------------------------------- /OnlySwitch/Utilities/MetadataExtractorError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Utilities/MetadataExtractorError.swift -------------------------------------------------------------------------------- /OnlySwitch/Utilities/SendEmail.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Utilities/SendEmail.swift -------------------------------------------------------------------------------- /OnlySwitch/Utilities/SupportedLanguage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Utilities/SupportedLanguage.swift -------------------------------------------------------------------------------- /OnlySwitch/Utilities/SystemInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Utilities/SystemInfo.swift -------------------------------------------------------------------------------- /OnlySwitch/Utilities/Updater.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Utilities/Updater.swift -------------------------------------------------------------------------------- /OnlySwitch/Utilities/WallpaperManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/Utilities/WallpaperManager.swift -------------------------------------------------------------------------------- /OnlySwitch/ViewModel/PreferencesObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitch/ViewModel/PreferencesObserver.swift -------------------------------------------------------------------------------- /OnlySwitchTests/EverySwitchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitchTests/EverySwitchTests.swift -------------------------------------------------------------------------------- /OnlySwitchTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitchTests/Info.plist -------------------------------------------------------------------------------- /OnlySwitchTests/OnlySwitchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlySwitchTests/OnlySwitchTests.swift -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/WidgetBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/WidgetBackground.colorset/Contents.json -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/ai_commander.imageset/AI_commander.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/ai_commander.imageset/AI_commander.png -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/ai_commander.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/ai_commander.imageset/Contents.json -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/apple_music_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/apple_music_icon.imageset/Contents.json -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/apple_music_icon.imageset/apple-music-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/apple_music_icon.imageset/apple-music-logo.png -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/bluetooth_off.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/bluetooth_off.imageset/Contents.json -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/bluetooth_off.imageset/bluetoothOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/bluetooth_off.imageset/bluetoothOff.png -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/bluetooth_on.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/bluetooth_on.imageset/Contents.json -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/bluetooth_on.imageset/bluetoothOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/bluetooth_on.imageset/bluetoothOn.png -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/darkmode_off.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/darkmode_off.imageset/Contents.json -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/darkmode_off.imageset/darkmodeoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/darkmode_off.imageset/darkmodeoff.png -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/darkmode_on.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/darkmode_on.imageset/Contents.json -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/darkmode_on.imageset/darkmodeon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/darkmode_on.imageset/darkmodeon.png -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/desktop_with_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/desktop_with_icon.imageset/Contents.json -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/desktop_with_icon.imageset/desktopcomputerwithicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/desktop_with_icon.imageset/desktopcomputerwithicon.png -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/desktopcomputer.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/desktopcomputer.imageset/Contents.json -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/desktopcomputer.imageset/desktopcomputer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/desktopcomputer.imageset/desktopcomputer.png -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/dock_recent_off.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/dock_recent_off.imageset/Contents.json -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/dock_recent_off.imageset/dock_recent_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/dock_recent_off.imageset/dock_recent_off.png -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/dock_recent_on.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/dock_recent_on.imageset/Contents.json -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/dock_recent_on.imageset/dock_recent_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/dock_recent_on.imageset/dock_recent_on.png -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/extension_off.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/extension_off.imageset/Contents.json -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/extension_off.imageset/hidden_extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/extension_off.imageset/hidden_extension.png -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/extension_on.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/extension_on.imageset/Contents.json -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/extension_on.imageset/show_extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/extension_on.imageset/show_extension.png -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/laptopnotchhidden.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/laptopnotchhidden.imageset/Contents.json -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/laptopnotchhidden.imageset/notchhidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/laptopnotchhidden.imageset/notchhidden.png -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/laptopwithnotch.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/laptopwithnotch.imageset/Contents.json -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/laptopwithnotch.imageset/withnotch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/laptopwithnotch.imageset/withnotch.png -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/logo.imageset/Contents.json -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/logo.imageset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/logo.imageset/icon_256x256@2x.png -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/mark_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/mark_icon.imageset/Contents.json -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/mark_icon.imageset/markicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/mark_icon.imageset/markicon.png -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/shortcuts_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/shortcuts_icon.imageset/Contents.json -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/shortcuts_icon.imageset/shortcuts-500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/shortcuts_icon.imageset/shortcuts-500.png -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/spotify_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/spotify_icon.imageset/Contents.json -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/spotify_icon.imageset/Spotify_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/spotify_icon.imageset/Spotify_logo.png -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/sticker.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/sticker.imageset/Contents.json -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/sticker.imageset/sticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/sticker.imageset/sticker.png -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/test.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/test.imageset/Contents.json -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/test.imageset/mappa-cina.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/test.imageset/mappa-cina.jpeg -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/truetone.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/truetone.imageset/Contents.json -------------------------------------------------------------------------------- /OnlyWidget/Assets.xcassets/truetone.imageset/truetone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Assets.xcassets/truetone.imageset/truetone.png -------------------------------------------------------------------------------- /OnlyWidget/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Info.plist -------------------------------------------------------------------------------- /OnlyWidget/Localization/Localizable.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Localization/Localizable.xcstrings -------------------------------------------------------------------------------- /OnlyWidget/OnlyWidget.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/OnlyWidget.entitlements -------------------------------------------------------------------------------- /OnlyWidget/OnlyWidgetBundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/OnlyWidgetBundle.swift -------------------------------------------------------------------------------- /OnlyWidget/Views/ErrorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Views/ErrorView.swift -------------------------------------------------------------------------------- /OnlyWidget/Views/SmallWidget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Views/SmallWidget.swift -------------------------------------------------------------------------------- /OnlyWidget/Views/SpectrumView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Views/SpectrumView.swift -------------------------------------------------------------------------------- /OnlyWidget/Widgets/BuiltIn/Intents/BuiltInSwitchEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Widgets/BuiltIn/Intents/BuiltInSwitchEntity.swift -------------------------------------------------------------------------------- /OnlyWidget/Widgets/BuiltIn/Intents/SelectBuiltInSwitchesIntent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Widgets/BuiltIn/Intents/SelectBuiltInSwitchesIntent.swift -------------------------------------------------------------------------------- /OnlyWidget/Widgets/BuiltIn/OnlyWidgetBuiltIn.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Widgets/BuiltIn/OnlyWidgetBuiltIn.swift -------------------------------------------------------------------------------- /OnlyWidget/Widgets/Evolution/EvolutionWidgetModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Widgets/Evolution/EvolutionWidgetModel.swift -------------------------------------------------------------------------------- /OnlyWidget/Widgets/Evolution/Intents/EvolutionEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Widgets/Evolution/Intents/EvolutionEntity.swift -------------------------------------------------------------------------------- /OnlyWidget/Widgets/Evolution/Intents/SelectEvolutionIntent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Widgets/Evolution/Intents/SelectEvolutionIntent.swift -------------------------------------------------------------------------------- /OnlyWidget/Widgets/Evolution/OnlyWidgetEvolutionProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/OnlyWidget/Widgets/Evolution/OnlyWidgetEvolutionProvider.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/README.md -------------------------------------------------------------------------------- /ShortcutsGalleryContributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacklandrin/OnlySwitch/HEAD/ShortcutsGalleryContributing.md --------------------------------------------------------------------------------