├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── other-issue.md ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── dist ├── sgtk-bar-arch ├── sgtk-menu └── sgtk-menu-arch ├── examples └── style.css ├── screenshots └── README.md ├── setup.py └── sgtk_menu ├── __init__.py ├── bar.py ├── config ├── appendix ├── appendix-i3 ├── appendix-ob ├── exit ├── exit-i3 ├── exit-ob ├── grid.css ├── icon-missing.svg └── style.css ├── dmenu.py ├── grid.py ├── menu.py └── tools.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/sgtk-menu/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/sgtk-menu/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/sgtk-menu/HEAD/.github/ISSUE_TEMPLATE/other-issue.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /venv 3 | /sgtk_menu.egg-info/ 4 | __pycache__ 5 | /.github/ 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/sgtk-menu/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | recursive-include sgtk-menu/config * 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/sgtk-menu/HEAD/README.md -------------------------------------------------------------------------------- /dist/sgtk-bar-arch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/sgtk-menu/HEAD/dist/sgtk-bar-arch -------------------------------------------------------------------------------- /dist/sgtk-menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/sgtk-menu/HEAD/dist/sgtk-menu -------------------------------------------------------------------------------- /dist/sgtk-menu-arch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/sgtk-menu/HEAD/dist/sgtk-menu-arch -------------------------------------------------------------------------------- /examples/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/sgtk-menu/HEAD/examples/style.css -------------------------------------------------------------------------------- /screenshots/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/sgtk-menu/HEAD/screenshots/README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/sgtk-menu/HEAD/setup.py -------------------------------------------------------------------------------- /sgtk_menu/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sgtk_menu/bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/sgtk-menu/HEAD/sgtk_menu/bar.py -------------------------------------------------------------------------------- /sgtk_menu/config/appendix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/sgtk-menu/HEAD/sgtk_menu/config/appendix -------------------------------------------------------------------------------- /sgtk_menu/config/appendix-i3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/sgtk-menu/HEAD/sgtk_menu/config/appendix-i3 -------------------------------------------------------------------------------- /sgtk_menu/config/appendix-ob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/sgtk-menu/HEAD/sgtk_menu/config/appendix-ob -------------------------------------------------------------------------------- /sgtk_menu/config/exit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/sgtk-menu/HEAD/sgtk_menu/config/exit -------------------------------------------------------------------------------- /sgtk_menu/config/exit-i3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/sgtk-menu/HEAD/sgtk_menu/config/exit-i3 -------------------------------------------------------------------------------- /sgtk_menu/config/exit-ob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/sgtk-menu/HEAD/sgtk_menu/config/exit-ob -------------------------------------------------------------------------------- /sgtk_menu/config/grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/sgtk-menu/HEAD/sgtk_menu/config/grid.css -------------------------------------------------------------------------------- /sgtk_menu/config/icon-missing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/sgtk-menu/HEAD/sgtk_menu/config/icon-missing.svg -------------------------------------------------------------------------------- /sgtk_menu/config/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/sgtk-menu/HEAD/sgtk_menu/config/style.css -------------------------------------------------------------------------------- /sgtk_menu/dmenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/sgtk-menu/HEAD/sgtk_menu/dmenu.py -------------------------------------------------------------------------------- /sgtk_menu/grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/sgtk-menu/HEAD/sgtk_menu/grid.py -------------------------------------------------------------------------------- /sgtk_menu/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/sgtk-menu/HEAD/sgtk_menu/menu.py -------------------------------------------------------------------------------- /sgtk_menu/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/sgtk-menu/HEAD/sgtk_menu/tools.py --------------------------------------------------------------------------------