gitextract_4ptmmrx2/ ├── .gitignore ├── CONTRIBUTING.md ├── Hidden Bar.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm/ │ │ └── Package.resolved │ └── xcshareddata/ │ └── xcschemes/ │ ├── Hidden Bar.xcscheme │ └── LauncherApplication.xcscheme ├── LICENSE ├── LauncherApplication/ │ ├── AppDelegate.swift │ ├── Assets.xcassets/ │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj/ │ │ └── Main.storyboard │ ├── Info.plist │ ├── LauncherApplication.entitlements │ ├── ViewController.swift │ ├── ar.lproj/ │ │ └── Main.strings │ ├── de.lproj/ │ │ └── Main.strings │ ├── fr.lproj/ │ │ └── Main.strings │ ├── hr.lproj/ │ │ └── Main.strings │ ├── ja.lproj/ │ │ └── Main.strings │ ├── vi.lproj/ │ │ └── Main.strings │ ├── zh-Hans.lproj/ │ │ └── Main.strings │ └── zh-Hant.lproj/ │ └── Main.strings ├── PRIVACY_POLICY.md ├── README.md └── hidden/ ├── AppDelegate.swift ├── Assets.xcassets/ │ ├── AppIcon.appiconset/ │ │ └── Contents.json │ ├── Contents.json │ ├── arrow.imageset/ │ │ └── Contents.json │ ├── banner.imageset/ │ │ └── Contents.json │ ├── banner_alway_hide.imageset/ │ │ └── Contents.json │ ├── ic_collapse.imageset/ │ │ └── Contents.json │ ├── ic_dot.imageset/ │ │ └── Contents.json │ ├── ic_expand.imageset/ │ │ └── Contents.json │ ├── ic_line.imageset/ │ │ └── Contents.json │ ├── ic_logo.imageset/ │ │ └── Contents.json │ ├── ico_1.imageset/ │ │ └── Contents.json │ ├── ico_2.imageset/ │ │ └── Contents.json │ ├── ico_3.imageset/ │ │ └── Contents.json │ ├── ico_4.imageset/ │ │ └── Contents.json │ ├── ico_5.imageset/ │ │ └── Contents.json │ ├── ico_6.imageset/ │ │ └── Contents.json │ ├── ico_7.imageset/ │ │ └── Contents.json │ ├── ico_collapse.imageset/ │ │ └── Contents.json │ ├── ico_compass.imageset/ │ │ └── Contents.json │ ├── ico_email.imageset/ │ │ └── Contents.json │ ├── ico_fb.imageset/ │ │ └── Contents.json │ ├── ico_github.imageset/ │ │ └── Contents.json │ ├── ico_twitter.imageset/ │ │ └── Contents.json │ ├── seprated.imageset/ │ │ └── Contents.json │ └── seprated_1.imageset/ │ └── Contents.json ├── Base.lproj/ │ └── Main.storyboard ├── Common/ │ ├── Assets.swift │ ├── Constant.swift │ ├── Preferences.swift │ └── Util.swift ├── EventMonitor.swift ├── Extensions/ │ ├── Bundle+Extension.swift │ ├── Date+Extension.swift │ ├── NSWindow+Extension.swift │ ├── Notification.Name+Extension.swift │ ├── StackView+Extension.swift │ ├── String+Extension.swift │ └── UserDefault+Extension.swift ├── Features/ │ ├── About/ │ │ └── AboutViewController.swift │ ├── Preferences/ │ │ ├── PreferencesViewController.swift │ │ └── PreferencesWindowController.swift │ └── StatusBar/ │ └── StatusBarController.swift ├── Hidden.entitlements ├── Info.plist ├── Models/ │ ├── GlobalKeybindingPreferences.swift │ └── SelectedSecond.swift ├── Views/ │ ├── HyperlinkTextField.swift │ ├── NSBarButtonItem+Extension.swift │ └── NSView+Extension.swift ├── ar.lproj/ │ ├── Localizable.strings │ └── Main.strings ├── de.lproj/ │ ├── Localizable.strings │ └── Main.strings ├── en.lproj/ │ └── Localizable.strings ├── fr.lproj/ │ ├── Localizable.strings │ └── Main.strings ├── hr.lproj/ │ ├── Localizable.strings │ └── Main.strings ├── ja.lproj/ │ ├── Localizable.strings │ └── Main.strings ├── vi.lproj/ │ ├── Localizable.strings │ └── Main.strings ├── zh-Hans.lproj/ │ ├── Localizable.strings │ └── Main.strings └── zh-Hant.lproj/ ├── Localizable.strings └── Main.strings