├── .gitignore ├── LICENSE.md ├── README.md ├── desktop ├── cylon.desktop └── cylonicon.png ├── documentation ├── help │ ├── cylon.7 │ ├── cylonCfg.conf │ ├── features_info.md │ ├── modules_info.md │ └── package_lists.md ├── history │ └── changelog.md └── screenshots │ ├── arch_news_RSS.png │ ├── bleachbit_CLI_wrapper.png │ ├── cylon_ascii.png │ ├── desktop_notification.jpg │ ├── main_menu2.png │ ├── pacman_utilities_menu.jpg │ └── remove_foreign_pkgs_menu.png ├── main └── Cylon.sh └── modules ├── Auracle_module ├── Misc_module ├── Pacman_module ├── Rmlint_module ├── System_clean_module ├── System_maint_module ├── System_maint_two_module └── trizen_module /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | stuff/ -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinlyonsrepo/cylon/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinlyonsrepo/cylon/HEAD/README.md -------------------------------------------------------------------------------- /desktop/cylon.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinlyonsrepo/cylon/HEAD/desktop/cylon.desktop -------------------------------------------------------------------------------- /desktop/cylonicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinlyonsrepo/cylon/HEAD/desktop/cylonicon.png -------------------------------------------------------------------------------- /documentation/help/cylon.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinlyonsrepo/cylon/HEAD/documentation/help/cylon.7 -------------------------------------------------------------------------------- /documentation/help/cylonCfg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinlyonsrepo/cylon/HEAD/documentation/help/cylonCfg.conf -------------------------------------------------------------------------------- /documentation/help/features_info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinlyonsrepo/cylon/HEAD/documentation/help/features_info.md -------------------------------------------------------------------------------- /documentation/help/modules_info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinlyonsrepo/cylon/HEAD/documentation/help/modules_info.md -------------------------------------------------------------------------------- /documentation/help/package_lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinlyonsrepo/cylon/HEAD/documentation/help/package_lists.md -------------------------------------------------------------------------------- /documentation/history/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinlyonsrepo/cylon/HEAD/documentation/history/changelog.md -------------------------------------------------------------------------------- /documentation/screenshots/arch_news_RSS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinlyonsrepo/cylon/HEAD/documentation/screenshots/arch_news_RSS.png -------------------------------------------------------------------------------- /documentation/screenshots/bleachbit_CLI_wrapper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinlyonsrepo/cylon/HEAD/documentation/screenshots/bleachbit_CLI_wrapper.png -------------------------------------------------------------------------------- /documentation/screenshots/cylon_ascii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinlyonsrepo/cylon/HEAD/documentation/screenshots/cylon_ascii.png -------------------------------------------------------------------------------- /documentation/screenshots/desktop_notification.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinlyonsrepo/cylon/HEAD/documentation/screenshots/desktop_notification.jpg -------------------------------------------------------------------------------- /documentation/screenshots/main_menu2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinlyonsrepo/cylon/HEAD/documentation/screenshots/main_menu2.png -------------------------------------------------------------------------------- /documentation/screenshots/pacman_utilities_menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinlyonsrepo/cylon/HEAD/documentation/screenshots/pacman_utilities_menu.jpg -------------------------------------------------------------------------------- /documentation/screenshots/remove_foreign_pkgs_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinlyonsrepo/cylon/HEAD/documentation/screenshots/remove_foreign_pkgs_menu.png -------------------------------------------------------------------------------- /main/Cylon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinlyonsrepo/cylon/HEAD/main/Cylon.sh -------------------------------------------------------------------------------- /modules/Auracle_module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinlyonsrepo/cylon/HEAD/modules/Auracle_module -------------------------------------------------------------------------------- /modules/Misc_module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinlyonsrepo/cylon/HEAD/modules/Misc_module -------------------------------------------------------------------------------- /modules/Pacman_module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinlyonsrepo/cylon/HEAD/modules/Pacman_module -------------------------------------------------------------------------------- /modules/Rmlint_module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinlyonsrepo/cylon/HEAD/modules/Rmlint_module -------------------------------------------------------------------------------- /modules/System_clean_module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinlyonsrepo/cylon/HEAD/modules/System_clean_module -------------------------------------------------------------------------------- /modules/System_maint_module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinlyonsrepo/cylon/HEAD/modules/System_maint_module -------------------------------------------------------------------------------- /modules/System_maint_two_module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinlyonsrepo/cylon/HEAD/modules/System_maint_two_module -------------------------------------------------------------------------------- /modules/trizen_module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinlyonsrepo/cylon/HEAD/modules/trizen_module --------------------------------------------------------------------------------