├── .github ├── CODEOWNERS └── workflows │ └── release.yml ├── LICENSE ├── README.md ├── _assets ├── icon │ ├── dark.png │ ├── dark │ │ ├── AppIcon.icns │ │ └── AppIcon.iconset │ │ │ ├── 128.png │ │ │ ├── 128@2x.png │ │ │ ├── 16.png │ │ │ ├── 16@2x.png │ │ │ ├── 256.png │ │ │ ├── 256@2x.png │ │ │ ├── 32.png │ │ │ ├── 32@2x.png │ │ │ ├── 512.png │ │ │ └── 512@2x.png │ ├── light.png │ └── light │ │ ├── AppIcon.icns │ │ └── AppIcon.iconset │ │ ├── 128.png │ │ ├── 128@2x.png │ │ ├── 16.png │ │ ├── 16@2x.png │ │ ├── 256.png │ │ ├── 256@2x.png │ │ ├── 32.png │ │ ├── 32@2x.png │ │ ├── 512.png │ │ └── 512@2x.png ├── install │ ├── solution.1.0.png │ ├── solution.1.1.png │ ├── solution.1.2.png │ ├── solution.2.0.0.png │ ├── solution.2.0.png │ ├── solution.2.1.0.png │ └── solution.2.1.png ├── intro │ ├── after.png │ └── before.png ├── usage │ ├── menuBarItem.png │ ├── settingsMenuBar.png │ └── settingsSpaces.png └── widgets │ ├── activeApp.1.png │ ├── activeApp.png │ ├── mediaPlayback.1.png │ ├── mediaPlayback.png │ ├── mediaPlaybackAndCard.png │ ├── mediaPlaybackCard.png │ └── systemMonitor.png └── src ├── .gitignore ├── .mise.toml ├── NotchBar ├── Resources │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── 128.png │ │ │ ├── 128@2x.png │ │ │ ├── 16.png │ │ │ ├── 16@2x.png │ │ │ ├── 256.png │ │ │ ├── 256@2x.png │ │ │ ├── 32.png │ │ │ ├── 32@2x.png │ │ │ ├── 512.png │ │ │ ├── 512@2x.png │ │ │ └── Contents.json │ │ └── Contents.json │ └── Preview Content │ │ └── Preview Assets.xcassets │ │ └── Contents.json └── Sources │ ├── AppDelegate.swift │ ├── AppState.swift │ ├── AppUrls.swift │ ├── AppView.swift │ ├── AppWindow.swift │ ├── Extensions │ ├── Angle.swift │ ├── NSColor.swift │ ├── NSImage.swift │ ├── NSScreen.swift │ ├── UserDefaults.swift │ └── View.swift │ ├── External │ └── Marquee.swift │ ├── Helpers.swift │ ├── Shapes │ ├── InvertedBottomCorners.swift │ ├── InvertedCapsule.swift │ └── RoundCornersInvertedTop.swift │ ├── SystemState.swift │ ├── Widgets │ ├── ActiveApp │ │ ├── ActiveAppData.swift │ │ └── ActiveAppPrimary.swift │ ├── Example │ │ ├── PrimaryView.swift │ │ └── SecondaryView.swift │ ├── MediaRemote │ │ ├── MediaCommand.swift │ │ ├── MediaData.swift │ │ ├── MediaPrimary.swift │ │ └── MediaSecondary.swift │ ├── SystemInfo │ │ ├── SystemInfoData.swift │ │ ├── SystemInfoExtension.swift │ │ └── SystemInfoPrimary.swift │ └── WidgetView.swift │ ├── WindowViews │ ├── Settings.swift │ └── Welcome.swift │ └── main.swift ├── Project.swift ├── Tuist.swift └── Tuist ├── Package.resolved └── Package.swift /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/README.md -------------------------------------------------------------------------------- /_assets/icon/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/_assets/icon/dark.png -------------------------------------------------------------------------------- /_assets/icon/dark/AppIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/_assets/icon/dark/AppIcon.icns -------------------------------------------------------------------------------- /_assets/icon/dark/AppIcon.iconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/_assets/icon/dark/AppIcon.iconset/128.png -------------------------------------------------------------------------------- /_assets/icon/dark/AppIcon.iconset/128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/_assets/icon/dark/AppIcon.iconset/128@2x.png -------------------------------------------------------------------------------- /_assets/icon/dark/AppIcon.iconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/_assets/icon/dark/AppIcon.iconset/16.png -------------------------------------------------------------------------------- /_assets/icon/dark/AppIcon.iconset/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/_assets/icon/dark/AppIcon.iconset/16@2x.png -------------------------------------------------------------------------------- /_assets/icon/dark/AppIcon.iconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/_assets/icon/dark/AppIcon.iconset/256.png -------------------------------------------------------------------------------- /_assets/icon/dark/AppIcon.iconset/256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/_assets/icon/dark/AppIcon.iconset/256@2x.png -------------------------------------------------------------------------------- /_assets/icon/dark/AppIcon.iconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/_assets/icon/dark/AppIcon.iconset/32.png -------------------------------------------------------------------------------- /_assets/icon/dark/AppIcon.iconset/32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/_assets/icon/dark/AppIcon.iconset/32@2x.png -------------------------------------------------------------------------------- /_assets/icon/dark/AppIcon.iconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/_assets/icon/dark/AppIcon.iconset/512.png -------------------------------------------------------------------------------- /_assets/icon/dark/AppIcon.iconset/512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/_assets/icon/dark/AppIcon.iconset/512@2x.png -------------------------------------------------------------------------------- /_assets/icon/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/_assets/icon/light.png -------------------------------------------------------------------------------- /_assets/icon/light/AppIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/_assets/icon/light/AppIcon.icns -------------------------------------------------------------------------------- /_assets/icon/light/AppIcon.iconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/_assets/icon/light/AppIcon.iconset/128.png -------------------------------------------------------------------------------- /_assets/icon/light/AppIcon.iconset/128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/_assets/icon/light/AppIcon.iconset/128@2x.png -------------------------------------------------------------------------------- /_assets/icon/light/AppIcon.iconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/_assets/icon/light/AppIcon.iconset/16.png -------------------------------------------------------------------------------- /_assets/icon/light/AppIcon.iconset/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/_assets/icon/light/AppIcon.iconset/16@2x.png -------------------------------------------------------------------------------- /_assets/icon/light/AppIcon.iconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/_assets/icon/light/AppIcon.iconset/256.png -------------------------------------------------------------------------------- /_assets/icon/light/AppIcon.iconset/256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/_assets/icon/light/AppIcon.iconset/256@2x.png -------------------------------------------------------------------------------- /_assets/icon/light/AppIcon.iconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/_assets/icon/light/AppIcon.iconset/32.png -------------------------------------------------------------------------------- /_assets/icon/light/AppIcon.iconset/32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/_assets/icon/light/AppIcon.iconset/32@2x.png -------------------------------------------------------------------------------- /_assets/icon/light/AppIcon.iconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/_assets/icon/light/AppIcon.iconset/512.png -------------------------------------------------------------------------------- /_assets/icon/light/AppIcon.iconset/512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/_assets/icon/light/AppIcon.iconset/512@2x.png -------------------------------------------------------------------------------- /_assets/install/solution.1.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/_assets/install/solution.1.0.png -------------------------------------------------------------------------------- /_assets/install/solution.1.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/_assets/install/solution.1.1.png -------------------------------------------------------------------------------- /_assets/install/solution.1.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/_assets/install/solution.1.2.png -------------------------------------------------------------------------------- /_assets/install/solution.2.0.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/_assets/install/solution.2.0.0.png -------------------------------------------------------------------------------- /_assets/install/solution.2.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/_assets/install/solution.2.0.png -------------------------------------------------------------------------------- /_assets/install/solution.2.1.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/_assets/install/solution.2.1.0.png -------------------------------------------------------------------------------- /_assets/install/solution.2.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/_assets/install/solution.2.1.png -------------------------------------------------------------------------------- /_assets/intro/after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/_assets/intro/after.png -------------------------------------------------------------------------------- /_assets/intro/before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/_assets/intro/before.png -------------------------------------------------------------------------------- /_assets/usage/menuBarItem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/_assets/usage/menuBarItem.png -------------------------------------------------------------------------------- /_assets/usage/settingsMenuBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/_assets/usage/settingsMenuBar.png -------------------------------------------------------------------------------- /_assets/usage/settingsSpaces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/_assets/usage/settingsSpaces.png -------------------------------------------------------------------------------- /_assets/widgets/activeApp.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/_assets/widgets/activeApp.1.png -------------------------------------------------------------------------------- /_assets/widgets/activeApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/_assets/widgets/activeApp.png -------------------------------------------------------------------------------- /_assets/widgets/mediaPlayback.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/_assets/widgets/mediaPlayback.1.png -------------------------------------------------------------------------------- /_assets/widgets/mediaPlayback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/_assets/widgets/mediaPlayback.png -------------------------------------------------------------------------------- /_assets/widgets/mediaPlaybackAndCard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/_assets/widgets/mediaPlaybackAndCard.png -------------------------------------------------------------------------------- /_assets/widgets/mediaPlaybackCard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/_assets/widgets/mediaPlaybackCard.png -------------------------------------------------------------------------------- /_assets/widgets/systemMonitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/_assets/widgets/systemMonitor.png -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/.mise.toml: -------------------------------------------------------------------------------- 1 | [tools] 2 | tuist = "4.27.0" 3 | -------------------------------------------------------------------------------- /src/NotchBar/Resources/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Resources/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /src/NotchBar/Resources/Assets.xcassets/AppIcon.appiconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Resources/Assets.xcassets/AppIcon.appiconset/128.png -------------------------------------------------------------------------------- /src/NotchBar/Resources/Assets.xcassets/AppIcon.appiconset/128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Resources/Assets.xcassets/AppIcon.appiconset/128@2x.png -------------------------------------------------------------------------------- /src/NotchBar/Resources/Assets.xcassets/AppIcon.appiconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Resources/Assets.xcassets/AppIcon.appiconset/16.png -------------------------------------------------------------------------------- /src/NotchBar/Resources/Assets.xcassets/AppIcon.appiconset/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Resources/Assets.xcassets/AppIcon.appiconset/16@2x.png -------------------------------------------------------------------------------- /src/NotchBar/Resources/Assets.xcassets/AppIcon.appiconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Resources/Assets.xcassets/AppIcon.appiconset/256.png -------------------------------------------------------------------------------- /src/NotchBar/Resources/Assets.xcassets/AppIcon.appiconset/256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Resources/Assets.xcassets/AppIcon.appiconset/256@2x.png -------------------------------------------------------------------------------- /src/NotchBar/Resources/Assets.xcassets/AppIcon.appiconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Resources/Assets.xcassets/AppIcon.appiconset/32.png -------------------------------------------------------------------------------- /src/NotchBar/Resources/Assets.xcassets/AppIcon.appiconset/32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Resources/Assets.xcassets/AppIcon.appiconset/32@2x.png -------------------------------------------------------------------------------- /src/NotchBar/Resources/Assets.xcassets/AppIcon.appiconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Resources/Assets.xcassets/AppIcon.appiconset/512.png -------------------------------------------------------------------------------- /src/NotchBar/Resources/Assets.xcassets/AppIcon.appiconset/512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Resources/Assets.xcassets/AppIcon.appiconset/512@2x.png -------------------------------------------------------------------------------- /src/NotchBar/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /src/NotchBar/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /src/NotchBar/Resources/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Resources/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /src/NotchBar/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /src/NotchBar/Sources/AppState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Sources/AppState.swift -------------------------------------------------------------------------------- /src/NotchBar/Sources/AppUrls.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Sources/AppUrls.swift -------------------------------------------------------------------------------- /src/NotchBar/Sources/AppView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Sources/AppView.swift -------------------------------------------------------------------------------- /src/NotchBar/Sources/AppWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Sources/AppWindow.swift -------------------------------------------------------------------------------- /src/NotchBar/Sources/Extensions/Angle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Sources/Extensions/Angle.swift -------------------------------------------------------------------------------- /src/NotchBar/Sources/Extensions/NSColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Sources/Extensions/NSColor.swift -------------------------------------------------------------------------------- /src/NotchBar/Sources/Extensions/NSImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Sources/Extensions/NSImage.swift -------------------------------------------------------------------------------- /src/NotchBar/Sources/Extensions/NSScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Sources/Extensions/NSScreen.swift -------------------------------------------------------------------------------- /src/NotchBar/Sources/Extensions/UserDefaults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Sources/Extensions/UserDefaults.swift -------------------------------------------------------------------------------- /src/NotchBar/Sources/Extensions/View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Sources/Extensions/View.swift -------------------------------------------------------------------------------- /src/NotchBar/Sources/External/Marquee.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Sources/External/Marquee.swift -------------------------------------------------------------------------------- /src/NotchBar/Sources/Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Sources/Helpers.swift -------------------------------------------------------------------------------- /src/NotchBar/Sources/Shapes/InvertedBottomCorners.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Sources/Shapes/InvertedBottomCorners.swift -------------------------------------------------------------------------------- /src/NotchBar/Sources/Shapes/InvertedCapsule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Sources/Shapes/InvertedCapsule.swift -------------------------------------------------------------------------------- /src/NotchBar/Sources/Shapes/RoundCornersInvertedTop.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Sources/Shapes/RoundCornersInvertedTop.swift -------------------------------------------------------------------------------- /src/NotchBar/Sources/SystemState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Sources/SystemState.swift -------------------------------------------------------------------------------- /src/NotchBar/Sources/Widgets/ActiveApp/ActiveAppData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Sources/Widgets/ActiveApp/ActiveAppData.swift -------------------------------------------------------------------------------- /src/NotchBar/Sources/Widgets/ActiveApp/ActiveAppPrimary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Sources/Widgets/ActiveApp/ActiveAppPrimary.swift -------------------------------------------------------------------------------- /src/NotchBar/Sources/Widgets/Example/PrimaryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Sources/Widgets/Example/PrimaryView.swift -------------------------------------------------------------------------------- /src/NotchBar/Sources/Widgets/Example/SecondaryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Sources/Widgets/Example/SecondaryView.swift -------------------------------------------------------------------------------- /src/NotchBar/Sources/Widgets/MediaRemote/MediaCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Sources/Widgets/MediaRemote/MediaCommand.swift -------------------------------------------------------------------------------- /src/NotchBar/Sources/Widgets/MediaRemote/MediaData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Sources/Widgets/MediaRemote/MediaData.swift -------------------------------------------------------------------------------- /src/NotchBar/Sources/Widgets/MediaRemote/MediaPrimary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Sources/Widgets/MediaRemote/MediaPrimary.swift -------------------------------------------------------------------------------- /src/NotchBar/Sources/Widgets/MediaRemote/MediaSecondary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Sources/Widgets/MediaRemote/MediaSecondary.swift -------------------------------------------------------------------------------- /src/NotchBar/Sources/Widgets/SystemInfo/SystemInfoData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Sources/Widgets/SystemInfo/SystemInfoData.swift -------------------------------------------------------------------------------- /src/NotchBar/Sources/Widgets/SystemInfo/SystemInfoExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Sources/Widgets/SystemInfo/SystemInfoExtension.swift -------------------------------------------------------------------------------- /src/NotchBar/Sources/Widgets/SystemInfo/SystemInfoPrimary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Sources/Widgets/SystemInfo/SystemInfoPrimary.swift -------------------------------------------------------------------------------- /src/NotchBar/Sources/Widgets/WidgetView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Sources/Widgets/WidgetView.swift -------------------------------------------------------------------------------- /src/NotchBar/Sources/WindowViews/Settings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Sources/WindowViews/Settings.swift -------------------------------------------------------------------------------- /src/NotchBar/Sources/WindowViews/Welcome.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Sources/WindowViews/Welcome.swift -------------------------------------------------------------------------------- /src/NotchBar/Sources/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/NotchBar/Sources/main.swift -------------------------------------------------------------------------------- /src/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/Project.swift -------------------------------------------------------------------------------- /src/Tuist.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/Tuist.swift -------------------------------------------------------------------------------- /src/Tuist/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/Tuist/Package.resolved -------------------------------------------------------------------------------- /src/Tuist/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navtoj/NotchBar/HEAD/src/Tuist/Package.swift --------------------------------------------------------------------------------