├── .github ├── FUNDING.yml └── workflows │ └── ci-mac.yaml ├── .gitignore ├── .gitmodules ├── Assets ├── Icon.psd └── Xclean.png ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── Xclean.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── Xclean.xcscheme └── Xclean ├── Classes ├── AboutWindowController.swift ├── ApplicationDelegate.swift ├── BytesToString.swift ├── DerivedData.swift ├── DerivedDataMenuItem.swift ├── FileManager.swift ├── MainViewController.swift ├── NSApplication+LaunchServices.h ├── NSApplication+LaunchServices.m ├── NoVibrancyTextField.swift └── Preferences.swift ├── Info.plist ├── Interface ├── Base.lproj │ ├── AboutWindowController.xib │ ├── MainMenu.xib │ └── MainViewController.xib └── Images │ ├── StatusIconTemplate.pdf │ └── Xclean.icns ├── Xclean-Bridging-Header.h └── Xclean.entitlements /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: macmade 2 | -------------------------------------------------------------------------------- /.github/workflows/ci-mac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Xclean/HEAD/.github/workflows/ci-mac.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Xclean/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Xclean/HEAD/.gitmodules -------------------------------------------------------------------------------- /Assets/Icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Xclean/HEAD/Assets/Icon.psd -------------------------------------------------------------------------------- /Assets/Xclean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Xclean/HEAD/Assets/Xclean.png -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Xclean/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Xclean/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Xclean/HEAD/README.md -------------------------------------------------------------------------------- /Xclean.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Xclean/HEAD/Xclean.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Xclean.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Xclean/HEAD/Xclean.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Xclean.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Xclean/HEAD/Xclean.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Xclean.xcodeproj/xcshareddata/xcschemes/Xclean.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Xclean/HEAD/Xclean.xcodeproj/xcshareddata/xcschemes/Xclean.xcscheme -------------------------------------------------------------------------------- /Xclean/Classes/AboutWindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Xclean/HEAD/Xclean/Classes/AboutWindowController.swift -------------------------------------------------------------------------------- /Xclean/Classes/ApplicationDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Xclean/HEAD/Xclean/Classes/ApplicationDelegate.swift -------------------------------------------------------------------------------- /Xclean/Classes/BytesToString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Xclean/HEAD/Xclean/Classes/BytesToString.swift -------------------------------------------------------------------------------- /Xclean/Classes/DerivedData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Xclean/HEAD/Xclean/Classes/DerivedData.swift -------------------------------------------------------------------------------- /Xclean/Classes/DerivedDataMenuItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Xclean/HEAD/Xclean/Classes/DerivedDataMenuItem.swift -------------------------------------------------------------------------------- /Xclean/Classes/FileManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Xclean/HEAD/Xclean/Classes/FileManager.swift -------------------------------------------------------------------------------- /Xclean/Classes/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Xclean/HEAD/Xclean/Classes/MainViewController.swift -------------------------------------------------------------------------------- /Xclean/Classes/NSApplication+LaunchServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Xclean/HEAD/Xclean/Classes/NSApplication+LaunchServices.h -------------------------------------------------------------------------------- /Xclean/Classes/NSApplication+LaunchServices.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Xclean/HEAD/Xclean/Classes/NSApplication+LaunchServices.m -------------------------------------------------------------------------------- /Xclean/Classes/NoVibrancyTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Xclean/HEAD/Xclean/Classes/NoVibrancyTextField.swift -------------------------------------------------------------------------------- /Xclean/Classes/Preferences.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Xclean/HEAD/Xclean/Classes/Preferences.swift -------------------------------------------------------------------------------- /Xclean/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Xclean/HEAD/Xclean/Info.plist -------------------------------------------------------------------------------- /Xclean/Interface/Base.lproj/AboutWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Xclean/HEAD/Xclean/Interface/Base.lproj/AboutWindowController.xib -------------------------------------------------------------------------------- /Xclean/Interface/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Xclean/HEAD/Xclean/Interface/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Xclean/Interface/Base.lproj/MainViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Xclean/HEAD/Xclean/Interface/Base.lproj/MainViewController.xib -------------------------------------------------------------------------------- /Xclean/Interface/Images/StatusIconTemplate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Xclean/HEAD/Xclean/Interface/Images/StatusIconTemplate.pdf -------------------------------------------------------------------------------- /Xclean/Interface/Images/Xclean.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Xclean/HEAD/Xclean/Interface/Images/Xclean.icns -------------------------------------------------------------------------------- /Xclean/Xclean-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Xclean/HEAD/Xclean/Xclean-Bridging-Header.h -------------------------------------------------------------------------------- /Xclean/Xclean.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Xclean/HEAD/Xclean/Xclean.entitlements --------------------------------------------------------------------------------