gitextract_x86hf_yn/ ├── .devcontainer/ │ └── devcontainer.json ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── 1-bug-report-form.yml │ │ ├── 1-feature-request-form.yml │ │ ├── config.yml │ │ ├── feature_request.md │ │ └── old_bug_report.md │ ├── PULL_REQUEST.md │ ├── dependabot.yml │ ├── scripts/ │ │ ├── extract_version.py │ │ └── remove_beta.py │ └── workflows/ │ ├── build_reusable.yml │ ├── cicd.yml │ ├── manual_build.yml │ ├── release.yml │ ├── static.yml │ └── update-version-dropdown.yml ├── .gitignore ├── BoringNotchXPCHelper/ │ ├── BoringNotchXPCHelper.entitlements │ ├── BoringNotchXPCHelper.swift │ ├── BoringNotchXPCHelperProtocol.swift │ ├── Info.plist │ └── main.swift ├── CONTRIBUTING.md ├── Configuration/ │ ├── dmg/ │ │ ├── .background/ │ │ │ └── background.tiff │ │ ├── create_dmg.sh │ │ └── dmgbuild_settings.py │ └── sparkle/ │ └── generate_appcast ├── LICENSE ├── README.md ├── SECURITY.md ├── THIRD_PARTY_LICENSES ├── boringNotch/ │ ├── Assets.xcassets/ │ │ ├── AccentColor.colorset/ │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Github.imageset/ │ │ │ └── Contents.json │ │ ├── bolt.imageset/ │ │ │ └── Contents.json │ │ ├── chrome.imageset/ │ │ │ └── Contents.json │ │ ├── defaultmusic.imageset/ │ │ │ └── Contents.json │ │ ├── logo.imageset/ │ │ │ └── Contents.json │ │ ├── logo2.imageset/ │ │ │ └── Contents.json │ │ ├── plug.imageset/ │ │ │ └── Contents.json │ │ ├── sparkle.imageset/ │ │ │ └── Contents.json │ │ ├── spotlight.imageset/ │ │ │ └── Contents.json │ │ └── theboringteam.imageset/ │ │ └── Contents.json │ ├── BoringViewCoordinator.swift │ ├── ContentView.swift │ ├── Info.plist │ ├── Localizable.xcstrings │ ├── MediaControllers/ │ │ ├── AppleMusicController.swift │ │ ├── MediaControllerProtocol.swift │ │ ├── NowPlayingController.swift │ │ ├── SpotifyController.swift │ │ └── YouTube Music Controller/ │ │ ├── YouTubeMusicAuthentication.swift │ │ ├── YouTubeMusicController.swift │ │ ├── YouTubeMusicModels.swift │ │ └── YouTubeMusicNetworking.swift │ ├── Preview Content/ │ │ └── Preview Assets.xcassets/ │ │ └── Contents.json │ ├── Providers/ │ │ └── CalendarServiceProviding.swift │ ├── Shortcuts/ │ │ └── ShortcutConstants.swift │ ├── XPCHelperClient/ │ │ ├── BoringNotchXPCHelperProtocol.swift │ │ └── XPCHelperClient.swift │ ├── animations/ │ │ ├── HelloAnimation.swift │ │ └── drop.swift │ ├── boring.m4a │ ├── boringNotch.entitlements │ ├── boringNotchApp.swift │ ├── components/ │ │ ├── AnimatedFace.swift │ │ ├── BottomRoundedRectangle.swift │ │ ├── Calendar/ │ │ │ └── BoringCalendar.swift │ │ ├── EmptyState.swift │ │ ├── HoverButton.swift │ │ ├── Live activities/ │ │ │ ├── BoringBattery.swift │ │ │ ├── DownloadView.swift │ │ │ ├── InlineHUD.swift │ │ │ ├── LiveActivityModifier.swift │ │ │ ├── MarqueeTextView.swift │ │ │ ├── OpenNotchHUD.swift │ │ │ └── SystemEventIndicatorModifier.swift │ │ ├── LottieView.swift │ │ ├── Music/ │ │ │ ├── LottieAnimationView.swift │ │ │ └── MusicVisualizer.swift │ │ ├── Notch/ │ │ │ ├── BoringExtrasMenu.swift │ │ │ ├── BoringHeader.swift │ │ │ ├── BoringNotchSkyLightWindow.swift │ │ │ ├── BoringNotchWindow.swift │ │ │ ├── NotchHomeView.swift │ │ │ └── NotchShape.swift │ │ ├── Onboarding/ │ │ │ ├── MusicControllerSelectionView.swift │ │ │ ├── OnboardingFinishView.swift │ │ │ ├── OnboardingView.swift │ │ │ ├── PermissionsRequestView.swift │ │ │ ├── SparkleView.swift │ │ │ └── WelcomeView.swift │ │ ├── ProgressIndicator.swift │ │ ├── Settings/ │ │ │ ├── EditPanelView.swift │ │ │ ├── ListItemPopover.swift │ │ │ ├── MusicSlotConfigurationView.swift │ │ │ ├── SettingsView.swift │ │ │ ├── SettingsWindowController.swift │ │ │ └── SoftwareUpdater.swift │ │ ├── Shelf/ │ │ │ ├── Models/ │ │ │ │ ├── Bookmark.swift │ │ │ │ └── ShelfItem.swift │ │ │ ├── Services/ │ │ │ │ ├── ImageProcessingService.swift │ │ │ │ ├── QuickLookService.swift │ │ │ │ ├── QuickShareService.swift │ │ │ │ ├── ShareServiceFinder.swift │ │ │ │ ├── ShelfActionService.swift │ │ │ │ ├── ShelfDropService.swift │ │ │ │ ├── ShelfPersistenceService.swift │ │ │ │ ├── TemporaryFileStorageService.swift │ │ │ │ └── ThumbnailService.swift │ │ │ ├── ViewModels/ │ │ │ │ ├── ShelfItemViewModel.swift │ │ │ │ ├── ShelfSelectionModel.swift │ │ │ │ └── ShelfStateViewModel.swift │ │ │ └── Views/ │ │ │ ├── DragPreviewView.swift │ │ │ ├── FileShareView.swift │ │ │ ├── ShelfItemView.swift │ │ │ └── ShelfView.swift │ │ ├── Tabs/ │ │ │ ├── TabButton.swift │ │ │ └── TabSelectionView.swift │ │ ├── TestView.swift │ │ ├── Tips/ │ │ │ └── TipStore.swift │ │ ├── Webcam/ │ │ │ └── WebcamView.swift │ │ └── WhatsNewView.swift │ ├── enums/ │ │ └── generic.swift │ ├── extensions/ │ │ ├── ActionBar.swift │ │ ├── BundleInfos.swift │ │ ├── Button+Bouncing.swift │ │ ├── Color+AccentColor.swift │ │ ├── ConditionalModifier.swift │ │ ├── DataTypes+Extensions.swift │ │ ├── KeyboardShortcutsHelper.swift │ │ ├── MouseTracker.swift │ │ ├── NSImage+Extensions.swift │ │ ├── NSItemProvider+LoadHelpers.swift │ │ ├── NSMenu+AssociatedObject.swift │ │ ├── NSScreen+UUID.swift │ │ ├── PanGesture.swift │ │ └── URL+SecurityScoped.swift │ ├── helpers/ │ │ ├── AppIcons.swift │ │ ├── AppleScriptHelper.swift │ │ ├── ApplicationRelauncher.swift │ │ ├── AssociatedObject.swift │ │ ├── AudioPlayer.swift │ │ ├── Clipboard+Content.swift │ │ └── MediaChecker.swift │ ├── managers/ │ │ ├── BatteryActivityManager.swift │ │ ├── BrightnessManager.swift │ │ ├── CalendarManager.swift │ │ ├── ImageService.swift │ │ ├── MusicManager.swift │ │ ├── NotchSpaceManager.swift │ │ ├── VolumeManager.swift │ │ └── WebcamManager.swift │ ├── menu/ │ │ └── StatusBarMenu.swift │ ├── metal/ │ │ └── visualizer.metal │ ├── models/ │ │ ├── BatteryStatusViewModel.swift │ │ ├── BoringViewModel.swift │ │ ├── CalendarModel.swift │ │ ├── Constants.swift │ │ ├── EventModel.swift │ │ ├── MusicControlButton.swift │ │ ├── PlaybackState.swift │ │ └── SharingStateManager.swift │ ├── observers/ │ │ ├── DragDetector.swift │ │ ├── FullscreenMediaDetection.swift │ │ └── MediaKeyInterceptor.swift │ ├── private/ │ │ └── CGSSpace.swift │ ├── sizing/ │ │ └── matters.swift │ └── utils/ │ └── Logger.swift ├── boringNotch.xcodeproj/ │ ├── project.pbxproj │ └── project.xcworkspace/ │ ├── contents.xcworkspacedata │ └── xcshareddata/ │ ├── IDEWorkspaceChecks.plist │ ├── WorkspaceSettings.xcsettings │ └── swiftpm/ │ └── Package.resolved ├── crowdin.yml ├── mediaremote-adapter/ │ ├── MediaRemoteAdapter.framework/ │ │ └── Versions/ │ │ └── A/ │ │ ├── MediaRemoteAdapter │ │ ├── Resources/ │ │ │ └── Info.plist │ │ └── _CodeSignature/ │ │ └── CodeResources │ ├── MediaRemoteAdapterTestClient │ └── mediaremote-adapter.pl └── updater/ └── appcast.xml