├── .gitignore ├── CHANGELOG ├── LICENSE.md ├── README.md ├── handlers ├── cfghndlr.py └── vmhndlr.py ├── linbox.py ├── requirements.txt ├── resources ├── close_white_36dp.svg ├── computer_white_36dp.svg ├── create_white_36dp.svg ├── delete_forever_white_36dp.svg ├── folder_open_white_36dp.svg ├── info_white_36dp.svg ├── linbox.qrc ├── ok_white_36dp.svg ├── play_arrow_white_36dp.svg ├── settings_white_36dp.svg ├── ss.png └── ss2.png ├── setup.py ├── start.sh ├── ui ├── designer_files │ ├── createwindow.ui │ └── mainwindow.ui ├── linbox_rc.py ├── ui_createwindow.py └── ui_mainwindow.py └── utils └── system.py /.gitignore: -------------------------------------------------------------------------------- 1 | /backup_dir/ 2 | .idea/ 3 | venv/ 4 | __pycache__/ 5 | -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dungeonseeker/linbox-qt5/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dungeonseeker/linbox-qt5/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dungeonseeker/linbox-qt5/HEAD/README.md -------------------------------------------------------------------------------- /handlers/cfghndlr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dungeonseeker/linbox-qt5/HEAD/handlers/cfghndlr.py -------------------------------------------------------------------------------- /handlers/vmhndlr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dungeonseeker/linbox-qt5/HEAD/handlers/vmhndlr.py -------------------------------------------------------------------------------- /linbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dungeonseeker/linbox-qt5/HEAD/linbox.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | setuptools==67.7.0 2 | PySide6~=6.5.0 3 | xdgenvpy~=2.3.5 4 | show-in-file-manager~=1.1.4 -------------------------------------------------------------------------------- /resources/close_white_36dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dungeonseeker/linbox-qt5/HEAD/resources/close_white_36dp.svg -------------------------------------------------------------------------------- /resources/computer_white_36dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dungeonseeker/linbox-qt5/HEAD/resources/computer_white_36dp.svg -------------------------------------------------------------------------------- /resources/create_white_36dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dungeonseeker/linbox-qt5/HEAD/resources/create_white_36dp.svg -------------------------------------------------------------------------------- /resources/delete_forever_white_36dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dungeonseeker/linbox-qt5/HEAD/resources/delete_forever_white_36dp.svg -------------------------------------------------------------------------------- /resources/folder_open_white_36dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dungeonseeker/linbox-qt5/HEAD/resources/folder_open_white_36dp.svg -------------------------------------------------------------------------------- /resources/info_white_36dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dungeonseeker/linbox-qt5/HEAD/resources/info_white_36dp.svg -------------------------------------------------------------------------------- /resources/linbox.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dungeonseeker/linbox-qt5/HEAD/resources/linbox.qrc -------------------------------------------------------------------------------- /resources/ok_white_36dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dungeonseeker/linbox-qt5/HEAD/resources/ok_white_36dp.svg -------------------------------------------------------------------------------- /resources/play_arrow_white_36dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dungeonseeker/linbox-qt5/HEAD/resources/play_arrow_white_36dp.svg -------------------------------------------------------------------------------- /resources/settings_white_36dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dungeonseeker/linbox-qt5/HEAD/resources/settings_white_36dp.svg -------------------------------------------------------------------------------- /resources/ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dungeonseeker/linbox-qt5/HEAD/resources/ss.png -------------------------------------------------------------------------------- /resources/ss2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dungeonseeker/linbox-qt5/HEAD/resources/ss2.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dungeonseeker/linbox-qt5/HEAD/setup.py -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dungeonseeker/linbox-qt5/HEAD/start.sh -------------------------------------------------------------------------------- /ui/designer_files/createwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dungeonseeker/linbox-qt5/HEAD/ui/designer_files/createwindow.ui -------------------------------------------------------------------------------- /ui/designer_files/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dungeonseeker/linbox-qt5/HEAD/ui/designer_files/mainwindow.ui -------------------------------------------------------------------------------- /ui/linbox_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dungeonseeker/linbox-qt5/HEAD/ui/linbox_rc.py -------------------------------------------------------------------------------- /ui/ui_createwindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dungeonseeker/linbox-qt5/HEAD/ui/ui_createwindow.py -------------------------------------------------------------------------------- /ui/ui_mainwindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dungeonseeker/linbox-qt5/HEAD/ui/ui_mainwindow.py -------------------------------------------------------------------------------- /utils/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dungeonseeker/linbox-qt5/HEAD/utils/system.py --------------------------------------------------------------------------------