├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── SECURITY.md ├── assets │ ├── accent_border.png │ ├── accent_titlebar.png │ ├── all_stuffs.png │ ├── border_color.png │ ├── center_relative.png │ ├── center_relative_example.gif │ ├── circle_motion.gif │ ├── corner_round.png │ ├── corner_small_round.png │ ├── corner_square.png │ ├── dwm_cloak_example.gif │ ├── dwm_no_cloak_example.gif │ ├── dwm_rtl.png │ ├── dwm_transitions_disabled.gif │ ├── dwm_transitions_enabled.gif │ ├── flashing.gif │ ├── hPyT-preview-app.mp4 │ ├── maximize.png │ ├── maximize_minimize.png │ ├── minimize.png │ ├── no_span.gif │ ├── opacity.png │ ├── rainbow_border.gif │ ├── rainbow_titlebar.gif │ ├── span.gif │ ├── stylize_text.gif │ ├── synchronization-example.gif │ ├── title_text_color.png │ ├── titlebar.png │ └── titlebar_color.png ├── dependabot.yml └── workflows │ ├── github-ci.yaml │ └── python-publish.yaml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── examples ├── kivy-example.py ├── pyQt-example.py ├── pyside-example.py ├── rainbow-synchronization-example.py ├── tkinter-example.py └── wx-example.py ├── hPyT ├── __init__.py ├── __main__.py ├── hPyT.py └── preview_app │ ├── assets │ ├── Rocket.png │ ├── disable.png │ ├── enable.png │ ├── github.png │ ├── heart.png │ ├── hide.png │ ├── history.png │ ├── icon.ico │ ├── icon.png │ ├── pause.png │ ├── play.png │ ├── pypi.png │ ├── theme.json │ ├── transparent.ico │ └── unhide.png │ └── cli.py ├── preview_app_screenshot.png └── setup.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/assets/accent_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/.github/assets/accent_border.png -------------------------------------------------------------------------------- /.github/assets/accent_titlebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/.github/assets/accent_titlebar.png -------------------------------------------------------------------------------- /.github/assets/all_stuffs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/.github/assets/all_stuffs.png -------------------------------------------------------------------------------- /.github/assets/border_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/.github/assets/border_color.png -------------------------------------------------------------------------------- /.github/assets/center_relative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/.github/assets/center_relative.png -------------------------------------------------------------------------------- /.github/assets/center_relative_example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/.github/assets/center_relative_example.gif -------------------------------------------------------------------------------- /.github/assets/circle_motion.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/.github/assets/circle_motion.gif -------------------------------------------------------------------------------- /.github/assets/corner_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/.github/assets/corner_round.png -------------------------------------------------------------------------------- /.github/assets/corner_small_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/.github/assets/corner_small_round.png -------------------------------------------------------------------------------- /.github/assets/corner_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/.github/assets/corner_square.png -------------------------------------------------------------------------------- /.github/assets/dwm_cloak_example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/.github/assets/dwm_cloak_example.gif -------------------------------------------------------------------------------- /.github/assets/dwm_no_cloak_example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/.github/assets/dwm_no_cloak_example.gif -------------------------------------------------------------------------------- /.github/assets/dwm_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/.github/assets/dwm_rtl.png -------------------------------------------------------------------------------- /.github/assets/dwm_transitions_disabled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/.github/assets/dwm_transitions_disabled.gif -------------------------------------------------------------------------------- /.github/assets/dwm_transitions_enabled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/.github/assets/dwm_transitions_enabled.gif -------------------------------------------------------------------------------- /.github/assets/flashing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/.github/assets/flashing.gif -------------------------------------------------------------------------------- /.github/assets/hPyT-preview-app.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/.github/assets/hPyT-preview-app.mp4 -------------------------------------------------------------------------------- /.github/assets/maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/.github/assets/maximize.png -------------------------------------------------------------------------------- /.github/assets/maximize_minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/.github/assets/maximize_minimize.png -------------------------------------------------------------------------------- /.github/assets/minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/.github/assets/minimize.png -------------------------------------------------------------------------------- /.github/assets/no_span.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/.github/assets/no_span.gif -------------------------------------------------------------------------------- /.github/assets/opacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/.github/assets/opacity.png -------------------------------------------------------------------------------- /.github/assets/rainbow_border.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/.github/assets/rainbow_border.gif -------------------------------------------------------------------------------- /.github/assets/rainbow_titlebar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/.github/assets/rainbow_titlebar.gif -------------------------------------------------------------------------------- /.github/assets/span.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/.github/assets/span.gif -------------------------------------------------------------------------------- /.github/assets/stylize_text.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/.github/assets/stylize_text.gif -------------------------------------------------------------------------------- /.github/assets/synchronization-example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/.github/assets/synchronization-example.gif -------------------------------------------------------------------------------- /.github/assets/title_text_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/.github/assets/title_text_color.png -------------------------------------------------------------------------------- /.github/assets/titlebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/.github/assets/titlebar.png -------------------------------------------------------------------------------- /.github/assets/titlebar_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/.github/assets/titlebar_color.png -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/github-ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/.github/workflows/github-ci.yaml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/.github/workflows/python-publish.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/README.md -------------------------------------------------------------------------------- /examples/kivy-example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/examples/kivy-example.py -------------------------------------------------------------------------------- /examples/pyQt-example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/examples/pyQt-example.py -------------------------------------------------------------------------------- /examples/pyside-example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/examples/pyside-example.py -------------------------------------------------------------------------------- /examples/rainbow-synchronization-example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/examples/rainbow-synchronization-example.py -------------------------------------------------------------------------------- /examples/tkinter-example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/examples/tkinter-example.py -------------------------------------------------------------------------------- /examples/wx-example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/examples/wx-example.py -------------------------------------------------------------------------------- /hPyT/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/hPyT/__init__.py -------------------------------------------------------------------------------- /hPyT/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/hPyT/__main__.py -------------------------------------------------------------------------------- /hPyT/hPyT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/hPyT/hPyT.py -------------------------------------------------------------------------------- /hPyT/preview_app/assets/Rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/hPyT/preview_app/assets/Rocket.png -------------------------------------------------------------------------------- /hPyT/preview_app/assets/disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/hPyT/preview_app/assets/disable.png -------------------------------------------------------------------------------- /hPyT/preview_app/assets/enable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/hPyT/preview_app/assets/enable.png -------------------------------------------------------------------------------- /hPyT/preview_app/assets/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/hPyT/preview_app/assets/github.png -------------------------------------------------------------------------------- /hPyT/preview_app/assets/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/hPyT/preview_app/assets/heart.png -------------------------------------------------------------------------------- /hPyT/preview_app/assets/hide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/hPyT/preview_app/assets/hide.png -------------------------------------------------------------------------------- /hPyT/preview_app/assets/history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/hPyT/preview_app/assets/history.png -------------------------------------------------------------------------------- /hPyT/preview_app/assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/hPyT/preview_app/assets/icon.ico -------------------------------------------------------------------------------- /hPyT/preview_app/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/hPyT/preview_app/assets/icon.png -------------------------------------------------------------------------------- /hPyT/preview_app/assets/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/hPyT/preview_app/assets/pause.png -------------------------------------------------------------------------------- /hPyT/preview_app/assets/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/hPyT/preview_app/assets/play.png -------------------------------------------------------------------------------- /hPyT/preview_app/assets/pypi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/hPyT/preview_app/assets/pypi.png -------------------------------------------------------------------------------- /hPyT/preview_app/assets/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/hPyT/preview_app/assets/theme.json -------------------------------------------------------------------------------- /hPyT/preview_app/assets/transparent.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/hPyT/preview_app/assets/transparent.ico -------------------------------------------------------------------------------- /hPyT/preview_app/assets/unhide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/hPyT/preview_app/assets/unhide.png -------------------------------------------------------------------------------- /hPyT/preview_app/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/hPyT/preview_app/cli.py -------------------------------------------------------------------------------- /preview_app_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/preview_app_screenshot.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zingzy/hPyT/HEAD/setup.py --------------------------------------------------------------------------------