gitextract_v7__n1h4/ ├── .github/ │ └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── XcodeProjects/ │ ├── AppDelegate.swift │ ├── Data/ │ │ ├── Alias.swift │ │ ├── CustomCommand.swift │ │ ├── Project.swift │ │ ├── TerminalCommand.swift │ │ └── TerminalScript.swift │ ├── Logic/ │ │ ├── CodableColorPicker.swift │ │ ├── Extensions/ │ │ │ ├── CharacterSet+All.swift │ │ │ ├── FileManger+Content.swift │ │ │ ├── NSColor+Codable.swift │ │ │ ├── NSWorkspace+App.swift │ │ │ ├── NSWorkspace+Execute.swift │ │ │ ├── NotificationNames.swift │ │ │ ├── String+Components.swift │ │ │ └── View+If.swift │ │ ├── ProfileFile.swift │ │ ├── PropertyWrappers/ │ │ │ └── UserDefaultsWrapper.swift │ │ └── UserDefaultsConfig.swift │ ├── Preview Content/ │ │ └── Preview Assets.xcassets/ │ │ └── Contents.json │ ├── Resourses/ │ │ ├── Assets.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── add.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── arrow.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── close.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── gear.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── more.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── packageSwift.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── plus.imageset/ │ │ │ │ └── Contents.json │ │ │ └── terminal.imageset/ │ │ │ └── Contents.json │ │ ├── Base.lproj/ │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── XcodeProjects.entitlements │ ├── Support/ │ │ ├── EventMonitor.swift │ │ ├── Preferences.swift │ │ ├── SharedFileList.h │ │ ├── SharedFileList.m │ │ └── XcodeProjects-Bridging-Header.h │ └── UI/ │ ├── Buttons/ │ │ ├── AddAliasButton.swift │ │ ├── AddCustomCommandButton.swift │ │ ├── AddProjectButton.swift │ │ ├── PreferencesView.swift │ │ └── TerminalCommandButton.swift │ ├── Cells/ │ │ ├── AliasCell.swift │ │ └── ProjectCell.swift │ ├── Controllers/ │ │ ├── ProjectPreferencesViewController.swift │ │ └── StatusViewController.swift │ ├── Images/ │ │ ├── ArrowImage.swift │ │ ├── ArrowImageWithHoverPopover.swift │ │ ├── CloseHintImage.swift │ │ └── PackageSwiftImage.swift │ ├── Modifiers/ │ │ ├── OnHover.swift │ │ ├── OnHoverText.swift │ │ └── RoundedCorners.swift │ └── Views/ │ ├── ActionsMenuText.swift │ ├── AliasNameView.swift │ ├── DividerSection.swift │ ├── HintView.swift │ ├── MainView.swift │ ├── ProjectIcon.swift │ ├── ProjectMenuView.swift │ ├── ProjectNameView.swift │ └── ProjectPreferencesView.swift ├── XcodeProjects.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata/ │ │ └── klm88400.xcuserdatad/ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata/ │ │ └── xcschemes/ │ │ ├── XcodeProjects.xcscheme │ │ └── XcodeProjectsTests.xcscheme │ └── xcuserdata/ │ └── klm88400.xcuserdatad/ │ └── xcdebugger/ │ └── Breakpoints_v2.xcbkptlist └── XcodeProjectsTests/ ├── Info.plist └── XcodeProjectsTests.swift