├── .github └── workflows │ ├── release.yml │ └── stale.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── bump_version.py ├── clipse-gui.png ├── clipse-gui.py ├── clipse_gui ├── __init__.py ├── app.py ├── config_manager.py ├── constants.py ├── controller.py ├── data_manager.py ├── image_handler.py ├── tray_manager.py ├── ui_builder.py ├── ui_components.py └── utils.py ├── docs ├── compact_clipse-gui.png └── screenshot.png ├── pyproject.toml └── requirements.txt /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d7omdev/clipse-gui/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d7omdev/clipse-gui/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d7omdev/clipse-gui/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d7omdev/clipse-gui/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d7omdev/clipse-gui/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d7omdev/clipse-gui/HEAD/README.md -------------------------------------------------------------------------------- /bump_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d7omdev/clipse-gui/HEAD/bump_version.py -------------------------------------------------------------------------------- /clipse-gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d7omdev/clipse-gui/HEAD/clipse-gui.png -------------------------------------------------------------------------------- /clipse-gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d7omdev/clipse-gui/HEAD/clipse-gui.py -------------------------------------------------------------------------------- /clipse_gui/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.4.1" 2 | -------------------------------------------------------------------------------- /clipse_gui/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d7omdev/clipse-gui/HEAD/clipse_gui/app.py -------------------------------------------------------------------------------- /clipse_gui/config_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d7omdev/clipse-gui/HEAD/clipse_gui/config_manager.py -------------------------------------------------------------------------------- /clipse_gui/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d7omdev/clipse-gui/HEAD/clipse_gui/constants.py -------------------------------------------------------------------------------- /clipse_gui/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d7omdev/clipse-gui/HEAD/clipse_gui/controller.py -------------------------------------------------------------------------------- /clipse_gui/data_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d7omdev/clipse-gui/HEAD/clipse_gui/data_manager.py -------------------------------------------------------------------------------- /clipse_gui/image_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d7omdev/clipse-gui/HEAD/clipse_gui/image_handler.py -------------------------------------------------------------------------------- /clipse_gui/tray_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d7omdev/clipse-gui/HEAD/clipse_gui/tray_manager.py -------------------------------------------------------------------------------- /clipse_gui/ui_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d7omdev/clipse-gui/HEAD/clipse_gui/ui_builder.py -------------------------------------------------------------------------------- /clipse_gui/ui_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d7omdev/clipse-gui/HEAD/clipse_gui/ui_components.py -------------------------------------------------------------------------------- /clipse_gui/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d7omdev/clipse-gui/HEAD/clipse_gui/utils.py -------------------------------------------------------------------------------- /docs/compact_clipse-gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d7omdev/clipse-gui/HEAD/docs/compact_clipse-gui.png -------------------------------------------------------------------------------- /docs/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d7omdev/clipse-gui/HEAD/docs/screenshot.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d7omdev/clipse-gui/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d7omdev/clipse-gui/HEAD/requirements.txt --------------------------------------------------------------------------------