gitextract_awypvfy4/ ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ ├── config.yml │ │ └── feature_request.yml │ └── workflows/ │ └── lint.yml ├── .gitignore ├── .swiftlint.yml ├── CODE_OF_CONDUCT.md ├── FREQUENT_ISSUES.md ├── Ice/ │ ├── Assets.xcassets/ │ │ ├── AccentColor.colorset/ │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── ControlItemImages/ │ │ │ ├── Contents.json │ │ │ ├── Dot/ │ │ │ │ ├── Contents.json │ │ │ │ ├── DotFill.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── DotStroke.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── Ellipsis/ │ │ │ │ ├── Contents.json │ │ │ │ ├── EllipsisFill.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── EllipsisStroke.imageset/ │ │ │ │ └── Contents.json │ │ │ └── IceCube/ │ │ │ ├── Contents.json │ │ │ ├── IceCubeFill.imageset/ │ │ │ │ └── Contents.json │ │ │ └── IceCubeStroke.imageset/ │ │ │ └── Contents.json │ │ ├── DefaultLayoutBarColor.colorset/ │ │ │ └── Contents.json │ │ └── Warning.imageset/ │ │ └── Contents.json │ ├── Bridging/ │ │ ├── Bridging.swift │ │ └── Shims/ │ │ ├── Deprecated.swift │ │ └── Private.swift │ ├── Events/ │ │ ├── EventManager.swift │ │ ├── EventMonitors/ │ │ │ ├── GlobalEventMonitor.swift │ │ │ ├── LocalEventMonitor.swift │ │ │ ├── RunLoopLocalEventMonitor.swift │ │ │ └── UniversalEventMonitor.swift │ │ └── EventTap.swift │ ├── Hotkeys/ │ │ ├── Hotkey.swift │ │ ├── HotkeyAction.swift │ │ ├── HotkeyRegistry.swift │ │ ├── KeyCode.swift │ │ ├── KeyCombination.swift │ │ └── Modifiers.swift │ ├── Ice.entitlements │ ├── Info.plist │ ├── Main/ │ │ ├── AppDelegate.swift │ │ ├── AppState.swift │ │ ├── IceApp.swift │ │ └── Navigation/ │ │ ├── AppNavigationState.swift │ │ └── NavigationIdentifiers/ │ │ ├── NavigationIdentifier.swift │ │ └── SettingsNavigationIdentifier.swift │ ├── MenuBar/ │ │ ├── Appearance/ │ │ │ ├── Configurations/ │ │ │ │ ├── MenuBarAppearanceConfigurationV1.swift │ │ │ │ └── MenuBarAppearanceConfigurationV2.swift │ │ │ ├── MenuBarAppearanceEditor/ │ │ │ │ ├── MenuBarAppearanceEditor.swift │ │ │ │ ├── MenuBarAppearanceEditorPanel.swift │ │ │ │ └── MenuBarShapePicker.swift │ │ │ ├── MenuBarAppearanceManager.swift │ │ │ ├── MenuBarOverlayPanel.swift │ │ │ ├── MenuBarShape.swift │ │ │ └── MenuBarTintKind.swift │ │ ├── ControlItem/ │ │ │ ├── ControlItem.swift │ │ │ ├── ControlItemImage.swift │ │ │ └── ControlItemImageSet.swift │ │ ├── MenuBarItems/ │ │ │ ├── MenuBarItem.swift │ │ │ ├── MenuBarItemImageCache.swift │ │ │ ├── MenuBarItemInfo.swift │ │ │ └── MenuBarItemManager.swift │ │ ├── MenuBarManager.swift │ │ ├── MenuBarSection.swift │ │ ├── Search/ │ │ │ └── MenuBarSearchPanel.swift │ │ └── Spacing/ │ │ └── MenuBarItemSpacingManager.swift │ ├── Permissions/ │ │ ├── Permission.swift │ │ ├── PermissionsManager.swift │ │ ├── PermissionsView.swift │ │ └── PermissionsWindow.swift │ ├── Resources/ │ │ └── Acknowledgements.rtf │ ├── Settings/ │ │ ├── SettingsManagers/ │ │ │ ├── AdvancedSettingsManager.swift │ │ │ ├── GeneralSettingsManager.swift │ │ │ ├── HotkeySettingsManager.swift │ │ │ └── SettingsManager.swift │ │ ├── SettingsPanes/ │ │ │ ├── AboutSettingsPane.swift │ │ │ ├── AdvancedSettingsPane.swift │ │ │ ├── GeneralSettingsPane.swift │ │ │ ├── HotkeysSettingsPane.swift │ │ │ ├── MenuBarAppearanceSettingsPane.swift │ │ │ └── MenuBarLayoutSettingsPane.swift │ │ ├── SettingsView.swift │ │ └── SettingsWindow.swift │ ├── Swizzling/ │ │ └── NSSplitViewItem+swizzledCanCollapse.swift │ ├── UI/ │ │ ├── HotkeyRecorder/ │ │ │ ├── HotkeyRecorder.swift │ │ │ └── HotkeyRecorderModel.swift │ │ ├── IceBar/ │ │ │ ├── IceBar.swift │ │ │ ├── IceBarColorManager.swift │ │ │ └── IceBarLocation.swift │ │ ├── IceUI/ │ │ │ ├── IceForm.swift │ │ │ ├── IceGroupBox.swift │ │ │ ├── IceLabeledContent.swift │ │ │ ├── IceMenu.swift │ │ │ ├── IcePicker.swift │ │ │ ├── IceSection.swift │ │ │ └── IceSlider.swift │ │ ├── LayoutBar/ │ │ │ ├── LayoutBar.swift │ │ │ ├── LayoutBarContainer.swift │ │ │ ├── LayoutBarItemView.swift │ │ │ ├── LayoutBarPaddingView.swift │ │ │ └── LayoutBarScrollView.swift │ │ ├── Pickers/ │ │ │ ├── CustomColorPicker/ │ │ │ │ └── CustomColorPicker.swift │ │ │ └── CustomGradientPicker/ │ │ │ ├── ColorStop.swift │ │ │ ├── CustomGradient.swift │ │ │ └── CustomGradientPicker.swift │ │ ├── Shapes/ │ │ │ └── AnyInsettableShape.swift │ │ ├── ViewModifiers/ │ │ │ ├── BottomBar.swift │ │ │ ├── ErasedToAnyView.swift │ │ │ ├── LayoutBarStyle.swift │ │ │ ├── LocalEventMonitorModifier.swift │ │ │ ├── OnFrameChange.swift │ │ │ ├── OnKeyDown.swift │ │ │ ├── Once.swift │ │ │ ├── ReadWindow.swift │ │ │ └── RemoveSidebarToggle.swift │ │ └── Views/ │ │ ├── AnnotationView.swift │ │ ├── BetaBadge.swift │ │ ├── SectionedList.swift │ │ └── VisualEffectView.swift │ ├── Updates/ │ │ └── UpdatesManager.swift │ ├── UserNotifications/ │ │ ├── UserNotificationIdentifier.swift │ │ └── UserNotificationManager.swift │ └── Utilities/ │ ├── BindingExposable.swift │ ├── CodableColor.swift │ ├── Constants.swift │ ├── Defaults.swift │ ├── Extensions.swift │ ├── IconResource.swift │ ├── Injection.swift │ ├── LocalizedErrorWrapper.swift │ ├── Logging.swift │ ├── MigrationManager.swift │ ├── MouseCursor.swift │ ├── Notifications.swift │ ├── ObjectStorage.swift │ ├── Predicates.swift │ ├── RehideStrategy.swift │ ├── ScreenCapture.swift │ ├── StatusItemDefaults.swift │ ├── SystemAppearance.swift │ ├── TaskTimeout.swift │ └── WindowInfo.swift ├── Ice.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm/ │ │ └── Package.resolved │ └── xcshareddata/ │ └── xcschemes/ │ └── Ice.xcscheme ├── LICENSE ├── README.md └── Resources/ └── Icon.fig