├── .github └── FUNDING.yml ├── .gitignore ├── BuildScripts └── build.sh ├── COPYING ├── Common ├── Constants.swift ├── DiskSizeManager.swift ├── FileSystemManager.swift ├── Protocols.swift └── TmpDiskVolume.swift ├── LICENSE ├── README.md ├── TmpDisk.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ ├── WorkspaceSettings.xcsettings │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcuserdata │ │ └── tim.xcuserdatad │ │ └── WorkspaceSettings.xcsettings ├── xcshareddata │ └── xcschemes │ │ └── TmpDisk.xcscheme └── xcuserdata │ └── tim.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── TmpDisk ├── AppDelegate.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon-1.png │ │ └── icon.png │ ├── Contents.json │ ├── disk.imageset │ │ ├── Contents.json │ │ ├── disk.png │ │ ├── disk@2x.png │ │ └── disk@3x-2.png │ ├── eject.imageset │ │ ├── Contents.json │ │ └── eject.png │ ├── eject_a.imageset │ │ ├── Contents.json │ │ └── eject_a.png │ ├── recreate.imageset │ │ ├── Contents.json │ │ └── recreate.png │ └── recreate_a.imageset │ │ ├── Contents.json │ │ └── recreate_a.png ├── Base.lproj │ └── Main.storyboard ├── IconUtil.swift ├── Info.plist ├── StatusBarController.swift ├── TmpDisk.entitlements ├── TmpDiskManager.swift ├── Util.swift ├── Views │ ├── AboutViewController.swift │ ├── AutoCreateManagerViewController.swift │ ├── CheckBoxTableCellView.swift │ ├── DropdownTableCellView.swift │ ├── NewTmpDiskViewController.swift │ ├── PreferencesViewController.swift │ └── TmpDiskMenuItem.swift ├── WindowManager.swift ├── XPCClient.swift ├── dsa_pub.pem ├── en.lproj │ └── Localizable.strings ├── es.lproj │ ├── Localizable.strings │ └── Main.strings ├── icon.icns └── zh-Hans.lproj │ ├── Localizable.strings │ └── Main.strings ├── TmpDiskCLI └── main.swift ├── TmpDiskLauncher ├── AppDelegate.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon-1.png │ │ └── icon.png │ └── Contents.json ├── Base.lproj │ └── Main.storyboard ├── Info.plist ├── TmpDiskLauncher.entitlements └── es.lproj │ └── Main.strings ├── TmpDiskTests └── TmpDiskTests.swift ├── TmpDiskUITests ├── TmpDiskUITests.swift └── TmpDiskUITestsLaunchTests.swift ├── appdmg.json ├── com.imothee.TmpDiskHelper ├── Info.plist ├── NSXPCConnection+AuditToken.h ├── TmpDiskCreator.swift ├── XPCServer.swift ├── com.imothee.TmpDiskHelper-Bridging-Header.h ├── launchd ├── launchd.plist └── main.swift ├── dmgbg.png └── package.sh /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/.gitignore -------------------------------------------------------------------------------- /BuildScripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/BuildScripts/build.sh -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/COPYING -------------------------------------------------------------------------------- /Common/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/Common/Constants.swift -------------------------------------------------------------------------------- /Common/DiskSizeManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/Common/DiskSizeManager.swift -------------------------------------------------------------------------------- /Common/FileSystemManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/Common/FileSystemManager.swift -------------------------------------------------------------------------------- /Common/Protocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/Common/Protocols.swift -------------------------------------------------------------------------------- /Common/TmpDiskVolume.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/Common/TmpDiskVolume.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/README.md -------------------------------------------------------------------------------- /TmpDisk.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TmpDisk.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TmpDisk.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /TmpDisk.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /TmpDisk.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /TmpDisk.xcodeproj/project.xcworkspace/xcuserdata/tim.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk.xcodeproj/project.xcworkspace/xcuserdata/tim.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /TmpDisk.xcodeproj/xcshareddata/xcschemes/TmpDisk.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk.xcodeproj/xcshareddata/xcschemes/TmpDisk.xcscheme -------------------------------------------------------------------------------- /TmpDisk.xcodeproj/xcuserdata/tim.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk.xcodeproj/xcuserdata/tim.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /TmpDisk.xcodeproj/xcuserdata/tim.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk.xcodeproj/xcuserdata/tim.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /TmpDisk/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk/AppDelegate.swift -------------------------------------------------------------------------------- /TmpDisk/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /TmpDisk/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TmpDisk/Assets.xcassets/AppIcon.appiconset/icon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk/Assets.xcassets/AppIcon.appiconset/icon-1.png -------------------------------------------------------------------------------- /TmpDisk/Assets.xcassets/AppIcon.appiconset/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk/Assets.xcassets/AppIcon.appiconset/icon.png -------------------------------------------------------------------------------- /TmpDisk/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TmpDisk/Assets.xcassets/disk.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk/Assets.xcassets/disk.imageset/Contents.json -------------------------------------------------------------------------------- /TmpDisk/Assets.xcassets/disk.imageset/disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk/Assets.xcassets/disk.imageset/disk.png -------------------------------------------------------------------------------- /TmpDisk/Assets.xcassets/disk.imageset/disk@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk/Assets.xcassets/disk.imageset/disk@2x.png -------------------------------------------------------------------------------- /TmpDisk/Assets.xcassets/disk.imageset/disk@3x-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk/Assets.xcassets/disk.imageset/disk@3x-2.png -------------------------------------------------------------------------------- /TmpDisk/Assets.xcassets/eject.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk/Assets.xcassets/eject.imageset/Contents.json -------------------------------------------------------------------------------- /TmpDisk/Assets.xcassets/eject.imageset/eject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk/Assets.xcassets/eject.imageset/eject.png -------------------------------------------------------------------------------- /TmpDisk/Assets.xcassets/eject_a.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk/Assets.xcassets/eject_a.imageset/Contents.json -------------------------------------------------------------------------------- /TmpDisk/Assets.xcassets/eject_a.imageset/eject_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk/Assets.xcassets/eject_a.imageset/eject_a.png -------------------------------------------------------------------------------- /TmpDisk/Assets.xcassets/recreate.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk/Assets.xcassets/recreate.imageset/Contents.json -------------------------------------------------------------------------------- /TmpDisk/Assets.xcassets/recreate.imageset/recreate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk/Assets.xcassets/recreate.imageset/recreate.png -------------------------------------------------------------------------------- /TmpDisk/Assets.xcassets/recreate_a.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk/Assets.xcassets/recreate_a.imageset/Contents.json -------------------------------------------------------------------------------- /TmpDisk/Assets.xcassets/recreate_a.imageset/recreate_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk/Assets.xcassets/recreate_a.imageset/recreate_a.png -------------------------------------------------------------------------------- /TmpDisk/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TmpDisk/IconUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk/IconUtil.swift -------------------------------------------------------------------------------- /TmpDisk/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk/Info.plist -------------------------------------------------------------------------------- /TmpDisk/StatusBarController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk/StatusBarController.swift -------------------------------------------------------------------------------- /TmpDisk/TmpDisk.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk/TmpDisk.entitlements -------------------------------------------------------------------------------- /TmpDisk/TmpDiskManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk/TmpDiskManager.swift -------------------------------------------------------------------------------- /TmpDisk/Util.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk/Util.swift -------------------------------------------------------------------------------- /TmpDisk/Views/AboutViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk/Views/AboutViewController.swift -------------------------------------------------------------------------------- /TmpDisk/Views/AutoCreateManagerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk/Views/AutoCreateManagerViewController.swift -------------------------------------------------------------------------------- /TmpDisk/Views/CheckBoxTableCellView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk/Views/CheckBoxTableCellView.swift -------------------------------------------------------------------------------- /TmpDisk/Views/DropdownTableCellView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk/Views/DropdownTableCellView.swift -------------------------------------------------------------------------------- /TmpDisk/Views/NewTmpDiskViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk/Views/NewTmpDiskViewController.swift -------------------------------------------------------------------------------- /TmpDisk/Views/PreferencesViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk/Views/PreferencesViewController.swift -------------------------------------------------------------------------------- /TmpDisk/Views/TmpDiskMenuItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk/Views/TmpDiskMenuItem.swift -------------------------------------------------------------------------------- /TmpDisk/WindowManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk/WindowManager.swift -------------------------------------------------------------------------------- /TmpDisk/XPCClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk/XPCClient.swift -------------------------------------------------------------------------------- /TmpDisk/dsa_pub.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk/dsa_pub.pem -------------------------------------------------------------------------------- /TmpDisk/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /TmpDisk/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /TmpDisk/es.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk/es.lproj/Main.strings -------------------------------------------------------------------------------- /TmpDisk/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk/icon.icns -------------------------------------------------------------------------------- /TmpDisk/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /TmpDisk/zh-Hans.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDisk/zh-Hans.lproj/Main.strings -------------------------------------------------------------------------------- /TmpDiskCLI/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDiskCLI/main.swift -------------------------------------------------------------------------------- /TmpDiskLauncher/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDiskLauncher/AppDelegate.swift -------------------------------------------------------------------------------- /TmpDiskLauncher/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDiskLauncher/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /TmpDiskLauncher/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDiskLauncher/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TmpDiskLauncher/Assets.xcassets/AppIcon.appiconset/icon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDiskLauncher/Assets.xcassets/AppIcon.appiconset/icon-1.png -------------------------------------------------------------------------------- /TmpDiskLauncher/Assets.xcassets/AppIcon.appiconset/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDiskLauncher/Assets.xcassets/AppIcon.appiconset/icon.png -------------------------------------------------------------------------------- /TmpDiskLauncher/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDiskLauncher/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TmpDiskLauncher/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDiskLauncher/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TmpDiskLauncher/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDiskLauncher/Info.plist -------------------------------------------------------------------------------- /TmpDiskLauncher/TmpDiskLauncher.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDiskLauncher/TmpDiskLauncher.entitlements -------------------------------------------------------------------------------- /TmpDiskLauncher/es.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDiskLauncher/es.lproj/Main.strings -------------------------------------------------------------------------------- /TmpDiskTests/TmpDiskTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDiskTests/TmpDiskTests.swift -------------------------------------------------------------------------------- /TmpDiskUITests/TmpDiskUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDiskUITests/TmpDiskUITests.swift -------------------------------------------------------------------------------- /TmpDiskUITests/TmpDiskUITestsLaunchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/TmpDiskUITests/TmpDiskUITestsLaunchTests.swift -------------------------------------------------------------------------------- /appdmg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/appdmg.json -------------------------------------------------------------------------------- /com.imothee.TmpDiskHelper/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/com.imothee.TmpDiskHelper/Info.plist -------------------------------------------------------------------------------- /com.imothee.TmpDiskHelper/NSXPCConnection+AuditToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/com.imothee.TmpDiskHelper/NSXPCConnection+AuditToken.h -------------------------------------------------------------------------------- /com.imothee.TmpDiskHelper/TmpDiskCreator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/com.imothee.TmpDiskHelper/TmpDiskCreator.swift -------------------------------------------------------------------------------- /com.imothee.TmpDiskHelper/XPCServer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/com.imothee.TmpDiskHelper/XPCServer.swift -------------------------------------------------------------------------------- /com.imothee.TmpDiskHelper/com.imothee.TmpDiskHelper-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/com.imothee.TmpDiskHelper/com.imothee.TmpDiskHelper-Bridging-Header.h -------------------------------------------------------------------------------- /com.imothee.TmpDiskHelper/launchd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/com.imothee.TmpDiskHelper/launchd -------------------------------------------------------------------------------- /com.imothee.TmpDiskHelper/launchd.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/com.imothee.TmpDiskHelper/launchd.plist -------------------------------------------------------------------------------- /com.imothee.TmpDiskHelper/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/com.imothee.TmpDiskHelper/main.swift -------------------------------------------------------------------------------- /dmgbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/dmgbg.png -------------------------------------------------------------------------------- /package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imothee/tmpdisk/HEAD/package.sh --------------------------------------------------------------------------------