├── .gitignore ├── LICENSE ├── OWNERS ├── Podman Desktop.xcodeproj └── project.pbxproj ├── Podman Desktop ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── debug.imageset │ │ ├── Contents.json │ │ └── debug.svg │ ├── podman-1.imageset │ │ ├── Contents.json │ │ └── layer1-2.svg │ ├── podman-large.imageset │ │ ├── podman.svg │ │ └── Contents.json │ ├── podman-logo-sm.imageset │ │ ├── Contents.json │ │ └── podman-logo-sm.png │ ├── podman-logo.imageset │ │ ├── Contents.json │ │ └── podman-logo.svg │ ├── podman-purple.colorset │ │ └── Contents.json │ ├── reboot.imageset │ │ ├── Contents.json │ │ └── reboot.svg │ ├── selkie-artwork.imageset │ │ ├── Contents.json │ │ └── selkie-artwork.svg │ ├── toggle-off.colorset │ │ └── Contents.json │ └── toggle-on.colorset │ │ └── Contents.json ├── Models │ ├── Errors.swift │ ├── Machine.swift │ ├── MenuBarController.swift │ ├── Shell.swift │ └── ViewRouter.swift ├── Podman_Desktop.entitlements ├── Podman_DesktopApp.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json └── Views │ ├── BodyView.swift │ ├── ContentView.swift │ ├── HeaderView.swift │ ├── MachineInitView.swift │ ├── MachineSelectView.swift │ ├── MenuBar.swift │ ├── SelectMachineView.swift │ └── SettingsView.swift └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/podman-desktop-swift/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/podman-desktop-swift/HEAD/LICENSE -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/podman-desktop-swift/HEAD/OWNERS -------------------------------------------------------------------------------- /Podman Desktop.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/podman-desktop-swift/HEAD/Podman Desktop.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Podman Desktop/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/podman-desktop-swift/HEAD/Podman Desktop/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Podman Desktop/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/podman-desktop-swift/HEAD/Podman Desktop/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Podman Desktop/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/podman-desktop-swift/HEAD/Podman Desktop/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Podman Desktop/Assets.xcassets/debug.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/podman-desktop-swift/HEAD/Podman Desktop/Assets.xcassets/debug.imageset/Contents.json -------------------------------------------------------------------------------- /Podman Desktop/Assets.xcassets/debug.imageset/debug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/podman-desktop-swift/HEAD/Podman Desktop/Assets.xcassets/debug.imageset/debug.svg -------------------------------------------------------------------------------- /Podman Desktop/Assets.xcassets/podman-1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/podman-desktop-swift/HEAD/Podman Desktop/Assets.xcassets/podman-1.imageset/Contents.json -------------------------------------------------------------------------------- /Podman Desktop/Assets.xcassets/podman-1.imageset/layer1-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/podman-desktop-swift/HEAD/Podman Desktop/Assets.xcassets/podman-1.imageset/layer1-2.svg -------------------------------------------------------------------------------- /Podman Desktop/Assets.xcassets/podman-large.imageset/ podman.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/podman-desktop-swift/HEAD/Podman Desktop/Assets.xcassets/podman-large.imageset/ podman.svg -------------------------------------------------------------------------------- /Podman Desktop/Assets.xcassets/podman-large.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/podman-desktop-swift/HEAD/Podman Desktop/Assets.xcassets/podman-large.imageset/Contents.json -------------------------------------------------------------------------------- /Podman Desktop/Assets.xcassets/podman-logo-sm.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/podman-desktop-swift/HEAD/Podman Desktop/Assets.xcassets/podman-logo-sm.imageset/Contents.json -------------------------------------------------------------------------------- /Podman Desktop/Assets.xcassets/podman-logo-sm.imageset/podman-logo-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/podman-desktop-swift/HEAD/Podman Desktop/Assets.xcassets/podman-logo-sm.imageset/podman-logo-sm.png -------------------------------------------------------------------------------- /Podman Desktop/Assets.xcassets/podman-logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/podman-desktop-swift/HEAD/Podman Desktop/Assets.xcassets/podman-logo.imageset/Contents.json -------------------------------------------------------------------------------- /Podman Desktop/Assets.xcassets/podman-logo.imageset/podman-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/podman-desktop-swift/HEAD/Podman Desktop/Assets.xcassets/podman-logo.imageset/podman-logo.svg -------------------------------------------------------------------------------- /Podman Desktop/Assets.xcassets/podman-purple.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/podman-desktop-swift/HEAD/Podman Desktop/Assets.xcassets/podman-purple.colorset/Contents.json -------------------------------------------------------------------------------- /Podman Desktop/Assets.xcassets/reboot.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/podman-desktop-swift/HEAD/Podman Desktop/Assets.xcassets/reboot.imageset/Contents.json -------------------------------------------------------------------------------- /Podman Desktop/Assets.xcassets/reboot.imageset/reboot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/podman-desktop-swift/HEAD/Podman Desktop/Assets.xcassets/reboot.imageset/reboot.svg -------------------------------------------------------------------------------- /Podman Desktop/Assets.xcassets/selkie-artwork.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/podman-desktop-swift/HEAD/Podman Desktop/Assets.xcassets/selkie-artwork.imageset/Contents.json -------------------------------------------------------------------------------- /Podman Desktop/Assets.xcassets/selkie-artwork.imageset/selkie-artwork.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/podman-desktop-swift/HEAD/Podman Desktop/Assets.xcassets/selkie-artwork.imageset/selkie-artwork.svg -------------------------------------------------------------------------------- /Podman Desktop/Assets.xcassets/toggle-off.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/podman-desktop-swift/HEAD/Podman Desktop/Assets.xcassets/toggle-off.colorset/Contents.json -------------------------------------------------------------------------------- /Podman Desktop/Assets.xcassets/toggle-on.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/podman-desktop-swift/HEAD/Podman Desktop/Assets.xcassets/toggle-on.colorset/Contents.json -------------------------------------------------------------------------------- /Podman Desktop/Models/Errors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/podman-desktop-swift/HEAD/Podman Desktop/Models/Errors.swift -------------------------------------------------------------------------------- /Podman Desktop/Models/Machine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/podman-desktop-swift/HEAD/Podman Desktop/Models/Machine.swift -------------------------------------------------------------------------------- /Podman Desktop/Models/MenuBarController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/podman-desktop-swift/HEAD/Podman Desktop/Models/MenuBarController.swift -------------------------------------------------------------------------------- /Podman Desktop/Models/Shell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/podman-desktop-swift/HEAD/Podman Desktop/Models/Shell.swift -------------------------------------------------------------------------------- /Podman Desktop/Models/ViewRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/podman-desktop-swift/HEAD/Podman Desktop/Models/ViewRouter.swift -------------------------------------------------------------------------------- /Podman Desktop/Podman_Desktop.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/podman-desktop-swift/HEAD/Podman Desktop/Podman_Desktop.entitlements -------------------------------------------------------------------------------- /Podman Desktop/Podman_DesktopApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/podman-desktop-swift/HEAD/Podman Desktop/Podman_DesktopApp.swift -------------------------------------------------------------------------------- /Podman Desktop/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/podman-desktop-swift/HEAD/Podman Desktop/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Podman Desktop/Views/BodyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/podman-desktop-swift/HEAD/Podman Desktop/Views/BodyView.swift -------------------------------------------------------------------------------- /Podman Desktop/Views/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/podman-desktop-swift/HEAD/Podman Desktop/Views/ContentView.swift -------------------------------------------------------------------------------- /Podman Desktop/Views/HeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/podman-desktop-swift/HEAD/Podman Desktop/Views/HeaderView.swift -------------------------------------------------------------------------------- /Podman Desktop/Views/MachineInitView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/podman-desktop-swift/HEAD/Podman Desktop/Views/MachineInitView.swift -------------------------------------------------------------------------------- /Podman Desktop/Views/MachineSelectView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/podman-desktop-swift/HEAD/Podman Desktop/Views/MachineSelectView.swift -------------------------------------------------------------------------------- /Podman Desktop/Views/MenuBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/podman-desktop-swift/HEAD/Podman Desktop/Views/MenuBar.swift -------------------------------------------------------------------------------- /Podman Desktop/Views/SelectMachineView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/podman-desktop-swift/HEAD/Podman Desktop/Views/SelectMachineView.swift -------------------------------------------------------------------------------- /Podman Desktop/Views/SettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/podman-desktop-swift/HEAD/Podman Desktop/Views/SettingsView.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/podman-desktop-swift/HEAD/README.md --------------------------------------------------------------------------------