├── README.md ├── SidebarToolbar.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── steven.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── steven.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist └── SidebarToolbar ├── AppDelegate.swift ├── Assets.xcassets ├── AccentColor.colorset │ └── Contents.json ├── AppIcon.appiconset │ └── Contents.json └── Contents.json ├── Base.lproj └── LaunchScreen.storyboard ├── Info.plist ├── SceneDelegate.swift └── SidebarToolbar.entitlements /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystSidebarToolbar/HEAD/README.md -------------------------------------------------------------------------------- /SidebarToolbar.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystSidebarToolbar/HEAD/SidebarToolbar.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SidebarToolbar.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystSidebarToolbar/HEAD/SidebarToolbar.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SidebarToolbar.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystSidebarToolbar/HEAD/SidebarToolbar.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SidebarToolbar.xcodeproj/project.xcworkspace/xcuserdata/steven.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystSidebarToolbar/HEAD/SidebarToolbar.xcodeproj/project.xcworkspace/xcuserdata/steven.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /SidebarToolbar.xcodeproj/xcuserdata/steven.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystSidebarToolbar/HEAD/SidebarToolbar.xcodeproj/xcuserdata/steven.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /SidebarToolbar/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystSidebarToolbar/HEAD/SidebarToolbar/AppDelegate.swift -------------------------------------------------------------------------------- /SidebarToolbar/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystSidebarToolbar/HEAD/SidebarToolbar/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /SidebarToolbar/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystSidebarToolbar/HEAD/SidebarToolbar/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SidebarToolbar/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystSidebarToolbar/HEAD/SidebarToolbar/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SidebarToolbar/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystSidebarToolbar/HEAD/SidebarToolbar/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SidebarToolbar/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystSidebarToolbar/HEAD/SidebarToolbar/Info.plist -------------------------------------------------------------------------------- /SidebarToolbar/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystSidebarToolbar/HEAD/SidebarToolbar/SceneDelegate.swift -------------------------------------------------------------------------------- /SidebarToolbar/SidebarToolbar.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystSidebarToolbar/HEAD/SidebarToolbar/SidebarToolbar.entitlements --------------------------------------------------------------------------------