├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── feature_request.yml └── workflows │ ├── release.yml │ ├── swift-lint.yml │ └── xcode-build.yml ├── .gitignore ├── .swiftlint.yml ├── Configuration ├── LICENSE ├── README.md ├── export_options.plist ├── generate_appcast ├── generate_html_for_sparkle_release.py ├── generate_latest_changes.py ├── remove_last_item_appcast.py ├── requirements.txt └── xccov-to-sonarqube-generic.sh ├── LICENSE.md ├── README.md ├── Release_Notes.md ├── Screens ├── Icon1024.png ├── Position │ ├── bottom.png │ ├── left.png │ ├── right.png │ └── top.png ├── Size │ ├── big.png │ ├── middle.png │ └── small.png ├── animations │ ├── fade.gif │ ├── grow.gif │ ├── no.gif │ ├── popinfadeout.gif │ ├── shrink.gif │ ├── side.gif │ └── sidegrow.gif ├── old-settingsWindow.png ├── old-settingsWindow2.png ├── settings │ ├── settings-design.png │ ├── settings-general.png │ └── settings-style.png ├── shadows.gif └── volumeDisabled.gif ├── SlimHUD.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata ├── xcshareddata │ └── xcschemes │ │ ├── SlimHUD-GitHub-Action.xcscheme │ │ ├── SlimHUD-Unit-Only.xcscheme │ │ ├── SlimHUD.xcscheme │ │ └── UI tests only.xcscheme └── xcuserdata │ └── alex.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── SlimHUD ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Group 2a-1024.png │ │ ├── Group 2a-128.png │ │ ├── Group 2a-16.png │ │ ├── Group 2a-256.png │ │ ├── Group 2a-32.png │ │ ├── Group 2a-512.png │ │ └── Group 2a-64.png │ ├── Contents.json │ ├── colors │ │ ├── BoxColor.colorset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── PrimaryColor.colorset │ │ │ └── Contents.json │ │ └── SelectionColor.colorset │ │ │ └── Contents.json │ ├── huds │ │ ├── Contents.json │ │ ├── key │ │ │ ├── Contents.json │ │ │ ├── key-0.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── key0.png │ │ │ ├── key-1.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── key1.png │ │ │ ├── key-2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── key2.png │ │ │ └── key-3.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── key3.png │ │ ├── sun │ │ │ ├── Contents.json │ │ │ ├── sun-0.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sun0.png │ │ │ ├── sun-1.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sun1.png │ │ │ ├── sun-2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sun2.png │ │ │ └── sun-3.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sun3.png │ │ └── volume │ │ │ ├── Contents.json │ │ │ ├── volume-0.imageset │ │ │ ├── Contents.json │ │ │ └── vol0.png │ │ │ ├── volume-1.imageset │ │ │ ├── Contents.json │ │ │ └── vol1.png │ │ │ ├── volume-2.imageset │ │ │ ├── Contents.json │ │ │ └── vol2.png │ │ │ ├── volume-3.imageset │ │ │ ├── Contents.json │ │ │ └── vol3.png │ │ │ └── volume-no.imageset │ │ │ ├── Contents.json │ │ │ └── novol.png │ ├── segmentedControlIcons │ │ ├── Contents.json │ │ ├── brightnessSegmTemplate.imageset │ │ │ ├── Contents.json │ │ │ └── sun.png │ │ ├── keyboardSegmTemplate.imageset │ │ │ ├── Contents.json │ │ │ └── key.png │ │ └── volumeSegmTemplate.imageset │ │ │ ├── Contents.json │ │ │ └── vol.png │ ├── settings │ │ ├── Contents.json │ │ ├── background.imageset │ │ │ ├── Contents.json │ │ │ ├── VenturaDark.png │ │ │ └── VenturaLight.png │ │ └── tabsIcons │ │ │ ├── Contents.json │ │ │ ├── eyedropper.imageset │ │ │ ├── Contents.json │ │ │ └── eyedropper.png │ │ │ ├── info.circle.imageset │ │ │ ├── Contents.json │ │ │ └── info.circle.png │ │ │ ├── square.stack.3d.down.dottedline.imageset │ │ │ ├── Contents.json │ │ │ └── square.stack.3d.down.dottedline.png │ │ │ └── wrench.adjustable.imageset │ │ │ ├── Contents.json │ │ │ └── wrench.adjustable.png │ └── statusIcon.imageset │ │ ├── Contents.json │ │ ├── Icon16.png │ │ └── Icon32.png ├── Controllers │ ├── HudsControllerInterface.swift │ ├── MainMenuController.swift │ ├── SettingsViewController │ │ ├── AboutViewController.swift │ │ ├── ConfigViewController.swift │ │ ├── DesignViewController.swift │ │ ├── SettingsViewController.swift │ │ ├── ShadowPopupViewController.swift │ │ └── StyleViewController.swift │ └── SettingsWindowController.swift ├── Extensions │ ├── BoolExtension.swift │ ├── CALayer.swift │ ├── NSButtonExtension.swift │ ├── NSControlExtension.swift │ ├── NSImageExtension.swift │ ├── NSSegmentedControlExtension.swift │ ├── NSViewExtension.swift │ └── UserDefaultsExtension.swift ├── Info.plist ├── PrivateHeaders │ ├── CABackdropLayer.h │ ├── CAFilter.h │ ├── CAPropertyInfo-Protocol.h │ └── SlimHUD-Bridging-Header.h ├── Services │ ├── AppleScriptRunner.swift │ ├── ChangesObserver.swift │ ├── DisplayManager.swift │ ├── Displayer.swift │ ├── HudAnimator.swift │ ├── IconManager.swift │ ├── KeyPressObserver.swift │ ├── KeyboardManager.swift │ ├── LoginItemList.swift │ ├── OSDUIManager.swift │ ├── PositionManager.swift │ ├── SettingsManager.swift │ ├── SystemObserver.swift │ ├── UpdaterDelegate.swift │ ├── UserDefaultsManager.swift │ └── VolumeManager.swift ├── SlimHUD.entitlements ├── Support │ ├── Alert.swift │ ├── AnimationStyle.swift │ ├── Constants.swift │ ├── EnabledBars.swift │ ├── Errors │ │ ├── AppleScriptError.swift │ │ ├── LogicError.swift │ │ └── SensorError.swift │ ├── Position.swift │ ├── SensorMethod.swift │ ├── ShadowType.swift │ └── StatusItemCreator.swift └── Views │ ├── BackdropLayerView.swift │ ├── BarView │ ├── BarView.swift │ └── BarView.xib │ ├── Hud.swift │ ├── Kauntey Suryawanshi │ ├── BaseView.swift │ ├── DeterminateAnimation.swift │ └── ProgressBar.swift │ ├── MainMenu.storyboard │ └── Settings │ ├── CustomViews │ ├── CustomView.swift │ ├── EdgeSelector.swift │ ├── StandardLabel.swift │ ├── TabItemView.swift │ ├── TabsManager.swift │ └── TabsView.swift │ └── Settings.storyboard ├── SlimHUDTests ├── Constants.swift └── Services │ ├── HudAnimatorTests.swift │ └── PositionManagerTests.swift ├── SlimHUDUITests ├── ConfigSettingsUITests.swift ├── HudsUITests.swift ├── LaunchAtLoginTests.swift ├── SettingsUITests.swift ├── StyleSettingsUITests.swift └── Utils │ ├── AAAUITestSetup.swift │ ├── SparkleUITests.swift │ ├── TestUtils.swift │ ├── UITestsUtils.swift │ └── XCUIApplicationExtension.swift ├── dev-docs ├── README.md ├── dev-ops │ ├── README.md │ └── release-process.png └── services.png ├── docs ├── README.md ├── Support │ ├── README.md │ └── appcast.xml └── simple-hud.png └── sonar-project.properties /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [AlexPerathoner] 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/swift-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/.github/workflows/swift-lint.yml -------------------------------------------------------------------------------- /.github/workflows/xcode-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/.github/workflows/xcode-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /Configuration/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/Configuration/LICENSE -------------------------------------------------------------------------------- /Configuration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/Configuration/README.md -------------------------------------------------------------------------------- /Configuration/export_options.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/Configuration/export_options.plist -------------------------------------------------------------------------------- /Configuration/generate_appcast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/Configuration/generate_appcast -------------------------------------------------------------------------------- /Configuration/generate_html_for_sparkle_release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/Configuration/generate_html_for_sparkle_release.py -------------------------------------------------------------------------------- /Configuration/generate_latest_changes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/Configuration/generate_latest_changes.py -------------------------------------------------------------------------------- /Configuration/remove_last_item_appcast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/Configuration/remove_last_item_appcast.py -------------------------------------------------------------------------------- /Configuration/requirements.txt: -------------------------------------------------------------------------------- 1 | markdown -------------------------------------------------------------------------------- /Configuration/xccov-to-sonarqube-generic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/Configuration/xccov-to-sonarqube-generic.sh -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/README.md -------------------------------------------------------------------------------- /Release_Notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/Release_Notes.md -------------------------------------------------------------------------------- /Screens/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/Screens/Icon1024.png -------------------------------------------------------------------------------- /Screens/Position/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/Screens/Position/bottom.png -------------------------------------------------------------------------------- /Screens/Position/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/Screens/Position/left.png -------------------------------------------------------------------------------- /Screens/Position/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/Screens/Position/right.png -------------------------------------------------------------------------------- /Screens/Position/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/Screens/Position/top.png -------------------------------------------------------------------------------- /Screens/Size/big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/Screens/Size/big.png -------------------------------------------------------------------------------- /Screens/Size/middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/Screens/Size/middle.png -------------------------------------------------------------------------------- /Screens/Size/small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/Screens/Size/small.png -------------------------------------------------------------------------------- /Screens/animations/fade.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/Screens/animations/fade.gif -------------------------------------------------------------------------------- /Screens/animations/grow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/Screens/animations/grow.gif -------------------------------------------------------------------------------- /Screens/animations/no.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/Screens/animations/no.gif -------------------------------------------------------------------------------- /Screens/animations/popinfadeout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/Screens/animations/popinfadeout.gif -------------------------------------------------------------------------------- /Screens/animations/shrink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/Screens/animations/shrink.gif -------------------------------------------------------------------------------- /Screens/animations/side.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/Screens/animations/side.gif -------------------------------------------------------------------------------- /Screens/animations/sidegrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/Screens/animations/sidegrow.gif -------------------------------------------------------------------------------- /Screens/old-settingsWindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/Screens/old-settingsWindow.png -------------------------------------------------------------------------------- /Screens/old-settingsWindow2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/Screens/old-settingsWindow2.png -------------------------------------------------------------------------------- /Screens/settings/settings-design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/Screens/settings/settings-design.png -------------------------------------------------------------------------------- /Screens/settings/settings-general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/Screens/settings/settings-general.png -------------------------------------------------------------------------------- /Screens/settings/settings-style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/Screens/settings/settings-style.png -------------------------------------------------------------------------------- /Screens/shadows.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/Screens/shadows.gif -------------------------------------------------------------------------------- /Screens/volumeDisabled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/Screens/volumeDisabled.gif -------------------------------------------------------------------------------- /SlimHUD.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SlimHUD.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SlimHUD.xcodeproj/xcshareddata/xcschemes/SlimHUD-GitHub-Action.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD.xcodeproj/xcshareddata/xcschemes/SlimHUD-GitHub-Action.xcscheme -------------------------------------------------------------------------------- /SlimHUD.xcodeproj/xcshareddata/xcschemes/SlimHUD-Unit-Only.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD.xcodeproj/xcshareddata/xcschemes/SlimHUD-Unit-Only.xcscheme -------------------------------------------------------------------------------- /SlimHUD.xcodeproj/xcshareddata/xcschemes/SlimHUD.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD.xcodeproj/xcshareddata/xcschemes/SlimHUD.xcscheme -------------------------------------------------------------------------------- /SlimHUD.xcodeproj/xcshareddata/xcschemes/UI tests only.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD.xcodeproj/xcshareddata/xcschemes/UI tests only.xcscheme -------------------------------------------------------------------------------- /SlimHUD.xcodeproj/xcuserdata/alex.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD.xcodeproj/xcuserdata/alex.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /SlimHUD/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/AppDelegate.swift -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/AppIcon.appiconset/Group 2a-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/AppIcon.appiconset/Group 2a-1024.png -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/AppIcon.appiconset/Group 2a-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/AppIcon.appiconset/Group 2a-128.png -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/AppIcon.appiconset/Group 2a-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/AppIcon.appiconset/Group 2a-16.png -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/AppIcon.appiconset/Group 2a-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/AppIcon.appiconset/Group 2a-256.png -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/AppIcon.appiconset/Group 2a-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/AppIcon.appiconset/Group 2a-32.png -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/AppIcon.appiconset/Group 2a-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/AppIcon.appiconset/Group 2a-512.png -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/AppIcon.appiconset/Group 2a-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/AppIcon.appiconset/Group 2a-64.png -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/colors/BoxColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/colors/BoxColor.colorset/Contents.json -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/colors/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/colors/Contents.json -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/colors/PrimaryColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/colors/PrimaryColor.colorset/Contents.json -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/colors/SelectionColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/colors/SelectionColor.colorset/Contents.json -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/huds/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/huds/Contents.json -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/huds/key/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/huds/key/Contents.json -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/huds/key/key-0.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/huds/key/key-0.imageset/Contents.json -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/huds/key/key-0.imageset/key0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/huds/key/key-0.imageset/key0.png -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/huds/key/key-1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/huds/key/key-1.imageset/Contents.json -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/huds/key/key-1.imageset/key1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/huds/key/key-1.imageset/key1.png -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/huds/key/key-2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/huds/key/key-2.imageset/Contents.json -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/huds/key/key-2.imageset/key2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/huds/key/key-2.imageset/key2.png -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/huds/key/key-3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/huds/key/key-3.imageset/Contents.json -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/huds/key/key-3.imageset/key3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/huds/key/key-3.imageset/key3.png -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/huds/sun/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/huds/sun/Contents.json -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/huds/sun/sun-0.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/huds/sun/sun-0.imageset/Contents.json -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/huds/sun/sun-0.imageset/sun0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/huds/sun/sun-0.imageset/sun0.png -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/huds/sun/sun-1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/huds/sun/sun-1.imageset/Contents.json -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/huds/sun/sun-1.imageset/sun1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/huds/sun/sun-1.imageset/sun1.png -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/huds/sun/sun-2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/huds/sun/sun-2.imageset/Contents.json -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/huds/sun/sun-2.imageset/sun2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/huds/sun/sun-2.imageset/sun2.png -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/huds/sun/sun-3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/huds/sun/sun-3.imageset/Contents.json -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/huds/sun/sun-3.imageset/sun3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/huds/sun/sun-3.imageset/sun3.png -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/huds/volume/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/huds/volume/Contents.json -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/huds/volume/volume-0.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/huds/volume/volume-0.imageset/Contents.json -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/huds/volume/volume-0.imageset/vol0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/huds/volume/volume-0.imageset/vol0.png -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/huds/volume/volume-1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/huds/volume/volume-1.imageset/Contents.json -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/huds/volume/volume-1.imageset/vol1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/huds/volume/volume-1.imageset/vol1.png -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/huds/volume/volume-2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/huds/volume/volume-2.imageset/Contents.json -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/huds/volume/volume-2.imageset/vol2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/huds/volume/volume-2.imageset/vol2.png -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/huds/volume/volume-3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/huds/volume/volume-3.imageset/Contents.json -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/huds/volume/volume-3.imageset/vol3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/huds/volume/volume-3.imageset/vol3.png -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/huds/volume/volume-no.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/huds/volume/volume-no.imageset/Contents.json -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/huds/volume/volume-no.imageset/novol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/huds/volume/volume-no.imageset/novol.png -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/segmentedControlIcons/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/segmentedControlIcons/Contents.json -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/segmentedControlIcons/brightnessSegmTemplate.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/segmentedControlIcons/brightnessSegmTemplate.imageset/Contents.json -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/segmentedControlIcons/brightnessSegmTemplate.imageset/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/segmentedControlIcons/brightnessSegmTemplate.imageset/sun.png -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/segmentedControlIcons/keyboardSegmTemplate.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/segmentedControlIcons/keyboardSegmTemplate.imageset/Contents.json -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/segmentedControlIcons/keyboardSegmTemplate.imageset/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/segmentedControlIcons/keyboardSegmTemplate.imageset/key.png -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/segmentedControlIcons/volumeSegmTemplate.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/segmentedControlIcons/volumeSegmTemplate.imageset/Contents.json -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/segmentedControlIcons/volumeSegmTemplate.imageset/vol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/segmentedControlIcons/volumeSegmTemplate.imageset/vol.png -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/settings/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/settings/Contents.json -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/settings/background.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/settings/background.imageset/Contents.json -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/settings/background.imageset/VenturaDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/settings/background.imageset/VenturaDark.png -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/settings/background.imageset/VenturaLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/settings/background.imageset/VenturaLight.png -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/settings/tabsIcons/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/settings/tabsIcons/Contents.json -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/settings/tabsIcons/eyedropper.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/settings/tabsIcons/eyedropper.imageset/Contents.json -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/settings/tabsIcons/eyedropper.imageset/eyedropper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/settings/tabsIcons/eyedropper.imageset/eyedropper.png -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/settings/tabsIcons/info.circle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/settings/tabsIcons/info.circle.imageset/Contents.json -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/settings/tabsIcons/info.circle.imageset/info.circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/settings/tabsIcons/info.circle.imageset/info.circle.png -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/settings/tabsIcons/square.stack.3d.down.dottedline.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/settings/tabsIcons/square.stack.3d.down.dottedline.imageset/Contents.json -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/settings/tabsIcons/square.stack.3d.down.dottedline.imageset/square.stack.3d.down.dottedline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/settings/tabsIcons/square.stack.3d.down.dottedline.imageset/square.stack.3d.down.dottedline.png -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/settings/tabsIcons/wrench.adjustable.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/settings/tabsIcons/wrench.adjustable.imageset/Contents.json -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/settings/tabsIcons/wrench.adjustable.imageset/wrench.adjustable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/settings/tabsIcons/wrench.adjustable.imageset/wrench.adjustable.png -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/statusIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/statusIcon.imageset/Contents.json -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/statusIcon.imageset/Icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/statusIcon.imageset/Icon16.png -------------------------------------------------------------------------------- /SlimHUD/Assets.xcassets/statusIcon.imageset/Icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Assets.xcassets/statusIcon.imageset/Icon32.png -------------------------------------------------------------------------------- /SlimHUD/Controllers/HudsControllerInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Controllers/HudsControllerInterface.swift -------------------------------------------------------------------------------- /SlimHUD/Controllers/MainMenuController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Controllers/MainMenuController.swift -------------------------------------------------------------------------------- /SlimHUD/Controllers/SettingsViewController/AboutViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Controllers/SettingsViewController/AboutViewController.swift -------------------------------------------------------------------------------- /SlimHUD/Controllers/SettingsViewController/ConfigViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Controllers/SettingsViewController/ConfigViewController.swift -------------------------------------------------------------------------------- /SlimHUD/Controllers/SettingsViewController/DesignViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Controllers/SettingsViewController/DesignViewController.swift -------------------------------------------------------------------------------- /SlimHUD/Controllers/SettingsViewController/SettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Controllers/SettingsViewController/SettingsViewController.swift -------------------------------------------------------------------------------- /SlimHUD/Controllers/SettingsViewController/ShadowPopupViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Controllers/SettingsViewController/ShadowPopupViewController.swift -------------------------------------------------------------------------------- /SlimHUD/Controllers/SettingsViewController/StyleViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Controllers/SettingsViewController/StyleViewController.swift -------------------------------------------------------------------------------- /SlimHUD/Controllers/SettingsWindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Controllers/SettingsWindowController.swift -------------------------------------------------------------------------------- /SlimHUD/Extensions/BoolExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Extensions/BoolExtension.swift -------------------------------------------------------------------------------- /SlimHUD/Extensions/CALayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Extensions/CALayer.swift -------------------------------------------------------------------------------- /SlimHUD/Extensions/NSButtonExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Extensions/NSButtonExtension.swift -------------------------------------------------------------------------------- /SlimHUD/Extensions/NSControlExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Extensions/NSControlExtension.swift -------------------------------------------------------------------------------- /SlimHUD/Extensions/NSImageExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Extensions/NSImageExtension.swift -------------------------------------------------------------------------------- /SlimHUD/Extensions/NSSegmentedControlExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Extensions/NSSegmentedControlExtension.swift -------------------------------------------------------------------------------- /SlimHUD/Extensions/NSViewExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Extensions/NSViewExtension.swift -------------------------------------------------------------------------------- /SlimHUD/Extensions/UserDefaultsExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Extensions/UserDefaultsExtension.swift -------------------------------------------------------------------------------- /SlimHUD/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Info.plist -------------------------------------------------------------------------------- /SlimHUD/PrivateHeaders/CABackdropLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/PrivateHeaders/CABackdropLayer.h -------------------------------------------------------------------------------- /SlimHUD/PrivateHeaders/CAFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/PrivateHeaders/CAFilter.h -------------------------------------------------------------------------------- /SlimHUD/PrivateHeaders/CAPropertyInfo-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/PrivateHeaders/CAPropertyInfo-Protocol.h -------------------------------------------------------------------------------- /SlimHUD/PrivateHeaders/SlimHUD-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/PrivateHeaders/SlimHUD-Bridging-Header.h -------------------------------------------------------------------------------- /SlimHUD/Services/AppleScriptRunner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Services/AppleScriptRunner.swift -------------------------------------------------------------------------------- /SlimHUD/Services/ChangesObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Services/ChangesObserver.swift -------------------------------------------------------------------------------- /SlimHUD/Services/DisplayManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Services/DisplayManager.swift -------------------------------------------------------------------------------- /SlimHUD/Services/Displayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Services/Displayer.swift -------------------------------------------------------------------------------- /SlimHUD/Services/HudAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Services/HudAnimator.swift -------------------------------------------------------------------------------- /SlimHUD/Services/IconManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Services/IconManager.swift -------------------------------------------------------------------------------- /SlimHUD/Services/KeyPressObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Services/KeyPressObserver.swift -------------------------------------------------------------------------------- /SlimHUD/Services/KeyboardManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Services/KeyboardManager.swift -------------------------------------------------------------------------------- /SlimHUD/Services/LoginItemList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Services/LoginItemList.swift -------------------------------------------------------------------------------- /SlimHUD/Services/OSDUIManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Services/OSDUIManager.swift -------------------------------------------------------------------------------- /SlimHUD/Services/PositionManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Services/PositionManager.swift -------------------------------------------------------------------------------- /SlimHUD/Services/SettingsManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Services/SettingsManager.swift -------------------------------------------------------------------------------- /SlimHUD/Services/SystemObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Services/SystemObserver.swift -------------------------------------------------------------------------------- /SlimHUD/Services/UpdaterDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Services/UpdaterDelegate.swift -------------------------------------------------------------------------------- /SlimHUD/Services/UserDefaultsManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Services/UserDefaultsManager.swift -------------------------------------------------------------------------------- /SlimHUD/Services/VolumeManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Services/VolumeManager.swift -------------------------------------------------------------------------------- /SlimHUD/SlimHUD.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/SlimHUD.entitlements -------------------------------------------------------------------------------- /SlimHUD/Support/Alert.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Support/Alert.swift -------------------------------------------------------------------------------- /SlimHUD/Support/AnimationStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Support/AnimationStyle.swift -------------------------------------------------------------------------------- /SlimHUD/Support/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Support/Constants.swift -------------------------------------------------------------------------------- /SlimHUD/Support/EnabledBars.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Support/EnabledBars.swift -------------------------------------------------------------------------------- /SlimHUD/Support/Errors/AppleScriptError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Support/Errors/AppleScriptError.swift -------------------------------------------------------------------------------- /SlimHUD/Support/Errors/LogicError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Support/Errors/LogicError.swift -------------------------------------------------------------------------------- /SlimHUD/Support/Errors/SensorError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Support/Errors/SensorError.swift -------------------------------------------------------------------------------- /SlimHUD/Support/Position.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Support/Position.swift -------------------------------------------------------------------------------- /SlimHUD/Support/SensorMethod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Support/SensorMethod.swift -------------------------------------------------------------------------------- /SlimHUD/Support/ShadowType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Support/ShadowType.swift -------------------------------------------------------------------------------- /SlimHUD/Support/StatusItemCreator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Support/StatusItemCreator.swift -------------------------------------------------------------------------------- /SlimHUD/Views/BackdropLayerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Views/BackdropLayerView.swift -------------------------------------------------------------------------------- /SlimHUD/Views/BarView/BarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Views/BarView/BarView.swift -------------------------------------------------------------------------------- /SlimHUD/Views/BarView/BarView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Views/BarView/BarView.xib -------------------------------------------------------------------------------- /SlimHUD/Views/Hud.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Views/Hud.swift -------------------------------------------------------------------------------- /SlimHUD/Views/Kauntey Suryawanshi/BaseView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Views/Kauntey Suryawanshi/BaseView.swift -------------------------------------------------------------------------------- /SlimHUD/Views/Kauntey Suryawanshi/DeterminateAnimation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Views/Kauntey Suryawanshi/DeterminateAnimation.swift -------------------------------------------------------------------------------- /SlimHUD/Views/Kauntey Suryawanshi/ProgressBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Views/Kauntey Suryawanshi/ProgressBar.swift -------------------------------------------------------------------------------- /SlimHUD/Views/MainMenu.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Views/MainMenu.storyboard -------------------------------------------------------------------------------- /SlimHUD/Views/Settings/CustomViews/CustomView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Views/Settings/CustomViews/CustomView.swift -------------------------------------------------------------------------------- /SlimHUD/Views/Settings/CustomViews/EdgeSelector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Views/Settings/CustomViews/EdgeSelector.swift -------------------------------------------------------------------------------- /SlimHUD/Views/Settings/CustomViews/StandardLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Views/Settings/CustomViews/StandardLabel.swift -------------------------------------------------------------------------------- /SlimHUD/Views/Settings/CustomViews/TabItemView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Views/Settings/CustomViews/TabItemView.swift -------------------------------------------------------------------------------- /SlimHUD/Views/Settings/CustomViews/TabsManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Views/Settings/CustomViews/TabsManager.swift -------------------------------------------------------------------------------- /SlimHUD/Views/Settings/CustomViews/TabsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Views/Settings/CustomViews/TabsView.swift -------------------------------------------------------------------------------- /SlimHUD/Views/Settings/Settings.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUD/Views/Settings/Settings.storyboard -------------------------------------------------------------------------------- /SlimHUDTests/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUDTests/Constants.swift -------------------------------------------------------------------------------- /SlimHUDTests/Services/HudAnimatorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUDTests/Services/HudAnimatorTests.swift -------------------------------------------------------------------------------- /SlimHUDTests/Services/PositionManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUDTests/Services/PositionManagerTests.swift -------------------------------------------------------------------------------- /SlimHUDUITests/ConfigSettingsUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUDUITests/ConfigSettingsUITests.swift -------------------------------------------------------------------------------- /SlimHUDUITests/HudsUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUDUITests/HudsUITests.swift -------------------------------------------------------------------------------- /SlimHUDUITests/LaunchAtLoginTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUDUITests/LaunchAtLoginTests.swift -------------------------------------------------------------------------------- /SlimHUDUITests/SettingsUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUDUITests/SettingsUITests.swift -------------------------------------------------------------------------------- /SlimHUDUITests/StyleSettingsUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUDUITests/StyleSettingsUITests.swift -------------------------------------------------------------------------------- /SlimHUDUITests/Utils/AAAUITestSetup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUDUITests/Utils/AAAUITestSetup.swift -------------------------------------------------------------------------------- /SlimHUDUITests/Utils/SparkleUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUDUITests/Utils/SparkleUITests.swift -------------------------------------------------------------------------------- /SlimHUDUITests/Utils/TestUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUDUITests/Utils/TestUtils.swift -------------------------------------------------------------------------------- /SlimHUDUITests/Utils/UITestsUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUDUITests/Utils/UITestsUtils.swift -------------------------------------------------------------------------------- /SlimHUDUITests/Utils/XCUIApplicationExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/SlimHUDUITests/Utils/XCUIApplicationExtension.swift -------------------------------------------------------------------------------- /dev-docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/dev-docs/README.md -------------------------------------------------------------------------------- /dev-docs/dev-ops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/dev-docs/dev-ops/README.md -------------------------------------------------------------------------------- /dev-docs/dev-ops/release-process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/dev-docs/dev-ops/release-process.png -------------------------------------------------------------------------------- /dev-docs/services.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/dev-docs/services.png -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/Support/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/docs/Support/README.md -------------------------------------------------------------------------------- /docs/Support/appcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/docs/Support/appcast.xml -------------------------------------------------------------------------------- /docs/simple-hud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/docs/simple-hud.png -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPerathoner/SlimHUD/HEAD/sonar-project.properties --------------------------------------------------------------------------------