├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── wiki_improvement.md ├── PULL_REQUEST_TEMPLATE │ └── pull_request_template.md ├── dependabot.yml └── workflows │ ├── nix-setup.yml │ ├── nix.yml │ ├── site.yml │ └── tox_10_full.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .pylintrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── client └── pypr-client.c ├── default.nix ├── examples ├── README.md ├── copy_conf.sh └── fab │ └── hypr │ ├── gBar │ ├── config │ └── style.scss │ ├── hyprland.conf │ ├── pyprland.d │ ├── layout_center.toml │ ├── monitors.toml │ ├── scratchpads.toml │ ├── shortcuts.toml │ ├── system_notifier.toml │ ├── variables.toml │ └── wallpapers.toml │ └── pyprland.toml ├── flake.lock ├── flake.nix ├── justfile ├── package.json ├── poetry.lock ├── pyprland ├── __init__.py ├── adapters │ ├── __init__.py │ ├── colors.py │ ├── menus.py │ └── units.py ├── aioops.py ├── command.py ├── common.py ├── ipc.py ├── plugins │ ├── __init__.py │ ├── experimental.py │ ├── expose.py │ ├── fcitx5_switcher.py │ ├── fetch_client_menu.py │ ├── interface.py │ ├── layout_center.py │ ├── lost_windows.py │ ├── magnify.py │ ├── menubar.py │ ├── monitors.py │ ├── monitors_v0.py │ ├── pyprland.py │ ├── scratchpads │ │ ├── __init__.py │ │ ├── animations.py │ │ ├── helpers.py │ │ ├── lookup.py │ │ └── objects.py │ ├── shift_monitors.py │ ├── shortcuts_menu.py │ ├── system_notifier.py │ ├── toggle_dpms.py │ ├── toggle_special.py │ ├── wallpapers.py │ └── workspaces_follow_focus.py ├── types.py └── version.py ├── pyproject.toml ├── sample_extension ├── README.md ├── pypr_examples │ ├── __init__.py │ └── focus_counter.py └── pyproject.toml ├── scripts ├── backquote_as_links.py ├── completions │ ├── README.md │ ├── pypr.bash │ └── pypr.zsh ├── get-pypr ├── make_release ├── pypr.py ├── pypr.sh ├── test_wiki_coverage.sh ├── title ├── update_get-pypr.sh ├── update_version └── v_whitelist.py ├── site ├── .vitepress │ ├── config.mjs │ └── theme │ │ ├── custom.css │ │ └── index.js ├── Development.md ├── Getting-started.md ├── InstallVirtualEnvironment.md ├── Menu.md ├── MultipleConfigurationFiles.md ├── Nix.md ├── Optimizations.md ├── Plugins.md ├── Troubleshooting.md ├── Variables.md ├── bar.md ├── components │ ├── CommandList.vue │ └── PluginList.vue ├── expose.md ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── fcitx5_switcher.md ├── fetch_client_menu.md ├── filters.md ├── index.md ├── layout_center.md ├── lost_windows.md ├── magnify.md ├── make_version.sh ├── monitors.md ├── public │ ├── icon.png │ ├── logo.png │ └── logo.svg ├── scratchpads.md ├── scratchpads_advanced.md ├── scratchpads_nonstandard.md ├── shift_monitors.md ├── shortcuts_menu.md ├── system_notifier.md ├── toggle_dpms.md ├── toggle_special.md ├── versions │ ├── 2.3.5 │ │ ├── Development.md │ │ ├── Getting-started.md │ │ ├── Menu.md │ │ ├── MultipleConfigurationFiles.md │ │ ├── Nix.md │ │ ├── Optimizations.md │ │ ├── Plugins.md │ │ ├── Troubleshooting.md │ │ ├── Variables.md │ │ ├── expose.md │ │ ├── fetch_client_menu.md │ │ ├── filters.md │ │ ├── gbar.md │ │ ├── index.md │ │ ├── layout_center.md │ │ ├── lost_windows.md │ │ ├── magnify.md │ │ ├── monitors.md │ │ ├── scratchpads.md │ │ ├── scratchpads_advanced.md │ │ ├── scratchpads_nonstandard.md │ │ ├── shift_monitors.md │ │ ├── shortcuts_menu.md │ │ ├── system_notifier.md │ │ ├── toggle_dpms.md │ │ ├── toggle_special.md │ │ ├── wallpapers.md │ │ └── workspaces_follow_focus.md │ ├── 2.3.6,7 │ │ ├── Development.md │ │ ├── Getting-started.md │ │ ├── Menu.md │ │ ├── MultipleConfigurationFiles.md │ │ ├── Nix.md │ │ ├── Optimizations.md │ │ ├── Plugins.md │ │ ├── Troubleshooting.md │ │ ├── Variables.md │ │ ├── expose.md │ │ ├── fetch_client_menu.md │ │ ├── filters.md │ │ ├── gbar.md │ │ ├── index.md │ │ ├── layout_center.md │ │ ├── lost_windows.md │ │ ├── magnify.md │ │ ├── monitors.md │ │ ├── scratchpads.md │ │ ├── scratchpads_advanced.md │ │ ├── scratchpads_nonstandard.md │ │ ├── shift_monitors.md │ │ ├── shortcuts_menu.md │ │ ├── system_notifier.md │ │ ├── toggle_dpms.md │ │ ├── toggle_special.md │ │ ├── wallpapers.md │ │ └── workspaces_follow_focus.md │ ├── 2.3.8 │ │ ├── Development.md │ │ ├── Getting-started.md │ │ ├── Menu.md │ │ ├── MultipleConfigurationFiles.md │ │ ├── Nix.md │ │ ├── Optimizations.md │ │ ├── Plugins.md │ │ ├── Troubleshooting.md │ │ ├── Variables.md │ │ ├── expose.md │ │ ├── fetch_client_menu.md │ │ ├── filters.md │ │ ├── gbar.md │ │ ├── index.md │ │ ├── layout_center.md │ │ ├── lost_windows.md │ │ ├── magnify.md │ │ ├── monitors.md │ │ ├── scratchpads.md │ │ ├── scratchpads_advanced.md │ │ ├── scratchpads_nonstandard.md │ │ ├── shift_monitors.md │ │ ├── shortcuts_menu.md │ │ ├── system_notifier.md │ │ ├── toggle_dpms.md │ │ ├── toggle_special.md │ │ ├── wallpapers.md │ │ └── workspaces_follow_focus.md │ ├── 2.4.0 │ │ ├── Development.md │ │ ├── Getting-started.md │ │ ├── InstallVirtualEnvironment.md │ │ ├── Menu.md │ │ ├── MultipleConfigurationFiles.md │ │ ├── Nix.md │ │ ├── Optimizations.md │ │ ├── Plugins.md │ │ ├── Troubleshooting.md │ │ ├── Variables.md │ │ ├── expose.md │ │ ├── fetch_client_menu.md │ │ ├── filters.md │ │ ├── gbar.md │ │ ├── index.md │ │ ├── layout_center.md │ │ ├── lost_windows.md │ │ ├── magnify.md │ │ ├── monitors.md │ │ ├── scratchpads.md │ │ ├── scratchpads_advanced.md │ │ ├── scratchpads_nonstandard.md │ │ ├── shift_monitors.md │ │ ├── shortcuts_menu.md │ │ ├── system_notifier.md │ │ ├── toggle_dpms.md │ │ ├── toggle_special.md │ │ ├── wallpapers.md │ │ └── workspaces_follow_focus.md │ ├── 2.4.1+ │ │ ├── Development.md │ │ ├── Getting-started.md │ │ ├── InstallVirtualEnvironment.md │ │ ├── Menu.md │ │ ├── MultipleConfigurationFiles.md │ │ ├── Nix.md │ │ ├── Optimizations.md │ │ ├── Plugins.md │ │ ├── Troubleshooting.md │ │ ├── Variables.md │ │ ├── expose.md │ │ ├── fetch_client_menu.md │ │ ├── filters.md │ │ ├── gbar.md │ │ ├── index.md │ │ ├── layout_center.md │ │ ├── lost_windows.md │ │ ├── magnify.md │ │ ├── monitors.md │ │ ├── scratchpads.md │ │ ├── scratchpads_advanced.md │ │ ├── scratchpads_nonstandard.md │ │ ├── shift_monitors.md │ │ ├── shortcuts_menu.md │ │ ├── system_notifier.md │ │ ├── toggle_dpms.md │ │ ├── toggle_special.md │ │ ├── wallpapers.md │ │ └── workspaces_follow_focus.md │ ├── 2.4.6 │ │ ├── Development.md │ │ ├── Getting-started.md │ │ ├── InstallVirtualEnvironment.md │ │ ├── Menu.md │ │ ├── MultipleConfigurationFiles.md │ │ ├── Nix.md │ │ ├── Optimizations.md │ │ ├── Plugins.md │ │ ├── Troubleshooting.md │ │ ├── Variables.md │ │ ├── bar.md │ │ ├── expose.md │ │ ├── fcitx5_switcher.md │ │ ├── fetch_client_menu.md │ │ ├── filters.md │ │ ├── index.md │ │ ├── layout_center.md │ │ ├── lost_windows.md │ │ ├── magnify.md │ │ ├── monitors.md │ │ ├── scratchpads.md │ │ ├── scratchpads_advanced.md │ │ ├── scratchpads_nonstandard.md │ │ ├── shift_monitors.md │ │ ├── shortcuts_menu.md │ │ ├── system_notifier.md │ │ ├── toggle_dpms.md │ │ ├── toggle_special.md │ │ ├── wallpapers.md │ │ └── workspaces_follow_focus.md │ └── 2.4.7 │ │ ├── Development.md │ │ ├── Getting-started.md │ │ ├── InstallVirtualEnvironment.md │ │ ├── Menu.md │ │ ├── MultipleConfigurationFiles.md │ │ ├── Nix.md │ │ ├── Optimizations.md │ │ ├── Plugins.md │ │ ├── Troubleshooting.md │ │ ├── Variables.md │ │ ├── bar.md │ │ ├── expose.md │ │ ├── fcitx5_switcher.md │ │ ├── fetch_client_menu.md │ │ ├── filters.md │ │ ├── index.md │ │ ├── layout_center.md │ │ ├── lost_windows.md │ │ ├── magnify.md │ │ ├── monitors.md │ │ ├── scratchpads.md │ │ ├── scratchpads_advanced.md │ │ ├── scratchpads_nonstandard.md │ │ ├── shift_monitors.md │ │ ├── shortcuts_menu.md │ │ ├── system_notifier.md │ │ ├── toggle_dpms.md │ │ ├── toggle_special.md │ │ ├── wallpapers.md │ │ └── workspaces_follow_focus.md ├── wallpapers.md └── workspaces_follow_focus.md ├── tests ├── __init__.py ├── conftest.py ├── sample_config.toml ├── test_external_plugins.py ├── test_load_all.py ├── test_plugin_layout_center.py ├── test_plugin_monitor.py ├── test_plugin_scratchpads.py ├── test_plugin_toggle_dpms.py ├── test_plugin_workspaces_follow_focus.py ├── test_pyprland.py ├── test_string_template.py ├── testtools.py └── vreg │ ├── 01_client_id_change.py │ └── run_tests.sh ├── tickets.rst └── tox.ini /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/wiki_improvement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/.github/ISSUE_TEMPLATE/wiki_improvement.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/nix-setup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/.github/workflows/nix-setup.yml -------------------------------------------------------------------------------- /.github/workflows/nix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/.github/workflows/nix.yml -------------------------------------------------------------------------------- /.github/workflows/site.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/.github/workflows/site.yml -------------------------------------------------------------------------------- /.github/workflows/tox_10_full.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/.github/workflows/tox_10_full.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/.pylintrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/README.md -------------------------------------------------------------------------------- /client/pypr-client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/client/pypr-client.c -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/default.nix -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/copy_conf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/examples/copy_conf.sh -------------------------------------------------------------------------------- /examples/fab/hypr/gBar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/examples/fab/hypr/gBar/config -------------------------------------------------------------------------------- /examples/fab/hypr/gBar/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/examples/fab/hypr/gBar/style.scss -------------------------------------------------------------------------------- /examples/fab/hypr/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/examples/fab/hypr/hyprland.conf -------------------------------------------------------------------------------- /examples/fab/hypr/pyprland.d/layout_center.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/examples/fab/hypr/pyprland.d/layout_center.toml -------------------------------------------------------------------------------- /examples/fab/hypr/pyprland.d/monitors.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/examples/fab/hypr/pyprland.d/monitors.toml -------------------------------------------------------------------------------- /examples/fab/hypr/pyprland.d/scratchpads.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/examples/fab/hypr/pyprland.d/scratchpads.toml -------------------------------------------------------------------------------- /examples/fab/hypr/pyprland.d/shortcuts.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/examples/fab/hypr/pyprland.d/shortcuts.toml -------------------------------------------------------------------------------- /examples/fab/hypr/pyprland.d/system_notifier.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/examples/fab/hypr/pyprland.d/system_notifier.toml -------------------------------------------------------------------------------- /examples/fab/hypr/pyprland.d/variables.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/examples/fab/hypr/pyprland.d/variables.toml -------------------------------------------------------------------------------- /examples/fab/hypr/pyprland.d/wallpapers.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/examples/fab/hypr/pyprland.d/wallpapers.toml -------------------------------------------------------------------------------- /examples/fab/hypr/pyprland.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/examples/fab/hypr/pyprland.toml -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/flake.nix -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/justfile -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/package.json -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyprland/__init__.py: -------------------------------------------------------------------------------- 1 | """Pyprland package.""" 2 | -------------------------------------------------------------------------------- /pyprland/adapters/__init__.py: -------------------------------------------------------------------------------- 1 | """Adapter functions for pyprland.""" 2 | -------------------------------------------------------------------------------- /pyprland/adapters/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/pyprland/adapters/colors.py -------------------------------------------------------------------------------- /pyprland/adapters/menus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/pyprland/adapters/menus.py -------------------------------------------------------------------------------- /pyprland/adapters/units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/pyprland/adapters/units.py -------------------------------------------------------------------------------- /pyprland/aioops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/pyprland/aioops.py -------------------------------------------------------------------------------- /pyprland/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/pyprland/command.py -------------------------------------------------------------------------------- /pyprland/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/pyprland/common.py -------------------------------------------------------------------------------- /pyprland/ipc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/pyprland/ipc.py -------------------------------------------------------------------------------- /pyprland/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | """built-in plugins.""" 2 | 3 | __all__ = ["interface"] 4 | -------------------------------------------------------------------------------- /pyprland/plugins/experimental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/pyprland/plugins/experimental.py -------------------------------------------------------------------------------- /pyprland/plugins/expose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/pyprland/plugins/expose.py -------------------------------------------------------------------------------- /pyprland/plugins/fcitx5_switcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/pyprland/plugins/fcitx5_switcher.py -------------------------------------------------------------------------------- /pyprland/plugins/fetch_client_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/pyprland/plugins/fetch_client_menu.py -------------------------------------------------------------------------------- /pyprland/plugins/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/pyprland/plugins/interface.py -------------------------------------------------------------------------------- /pyprland/plugins/layout_center.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/pyprland/plugins/layout_center.py -------------------------------------------------------------------------------- /pyprland/plugins/lost_windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/pyprland/plugins/lost_windows.py -------------------------------------------------------------------------------- /pyprland/plugins/magnify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/pyprland/plugins/magnify.py -------------------------------------------------------------------------------- /pyprland/plugins/menubar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/pyprland/plugins/menubar.py -------------------------------------------------------------------------------- /pyprland/plugins/monitors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/pyprland/plugins/monitors.py -------------------------------------------------------------------------------- /pyprland/plugins/monitors_v0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/pyprland/plugins/monitors_v0.py -------------------------------------------------------------------------------- /pyprland/plugins/pyprland.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/pyprland/plugins/pyprland.py -------------------------------------------------------------------------------- /pyprland/plugins/scratchpads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/pyprland/plugins/scratchpads/__init__.py -------------------------------------------------------------------------------- /pyprland/plugins/scratchpads/animations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/pyprland/plugins/scratchpads/animations.py -------------------------------------------------------------------------------- /pyprland/plugins/scratchpads/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/pyprland/plugins/scratchpads/helpers.py -------------------------------------------------------------------------------- /pyprland/plugins/scratchpads/lookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/pyprland/plugins/scratchpads/lookup.py -------------------------------------------------------------------------------- /pyprland/plugins/scratchpads/objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/pyprland/plugins/scratchpads/objects.py -------------------------------------------------------------------------------- /pyprland/plugins/shift_monitors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/pyprland/plugins/shift_monitors.py -------------------------------------------------------------------------------- /pyprland/plugins/shortcuts_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/pyprland/plugins/shortcuts_menu.py -------------------------------------------------------------------------------- /pyprland/plugins/system_notifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/pyprland/plugins/system_notifier.py -------------------------------------------------------------------------------- /pyprland/plugins/toggle_dpms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/pyprland/plugins/toggle_dpms.py -------------------------------------------------------------------------------- /pyprland/plugins/toggle_special.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/pyprland/plugins/toggle_special.py -------------------------------------------------------------------------------- /pyprland/plugins/wallpapers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/pyprland/plugins/wallpapers.py -------------------------------------------------------------------------------- /pyprland/plugins/workspaces_follow_focus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/pyprland/plugins/workspaces_follow_focus.py -------------------------------------------------------------------------------- /pyprland/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/pyprland/types.py -------------------------------------------------------------------------------- /pyprland/version.py: -------------------------------------------------------------------------------- 1 | """Package version.""" 2 | 3 | VERSION = "2.5.0-15" 4 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/pyproject.toml -------------------------------------------------------------------------------- /sample_extension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/sample_extension/README.md -------------------------------------------------------------------------------- /sample_extension/pypr_examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_extension/pypr_examples/focus_counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/sample_extension/pypr_examples/focus_counter.py -------------------------------------------------------------------------------- /sample_extension/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/sample_extension/pyproject.toml -------------------------------------------------------------------------------- /scripts/backquote_as_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/scripts/backquote_as_links.py -------------------------------------------------------------------------------- /scripts/completions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/scripts/completions/README.md -------------------------------------------------------------------------------- /scripts/completions/pypr.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/scripts/completions/pypr.bash -------------------------------------------------------------------------------- /scripts/completions/pypr.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/scripts/completions/pypr.zsh -------------------------------------------------------------------------------- /scripts/get-pypr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/scripts/get-pypr -------------------------------------------------------------------------------- /scripts/make_release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/scripts/make_release -------------------------------------------------------------------------------- /scripts/pypr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/scripts/pypr.py -------------------------------------------------------------------------------- /scripts/pypr.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | socat - "UNIX-CONNECT:${XDG_RUNTIME_DIR}/hypr/${HYPRLAND_INSTANCE_SIGNATURE}/.pyprland.sock" <<< $@ 3 | -------------------------------------------------------------------------------- /scripts/test_wiki_coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/scripts/test_wiki_coverage.sh -------------------------------------------------------------------------------- /scripts/title: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/scripts/title -------------------------------------------------------------------------------- /scripts/update_get-pypr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/scripts/update_get-pypr.sh -------------------------------------------------------------------------------- /scripts/update_version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/scripts/update_version -------------------------------------------------------------------------------- /scripts/v_whitelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/scripts/v_whitelist.py -------------------------------------------------------------------------------- /site/.vitepress/config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/.vitepress/config.mjs -------------------------------------------------------------------------------- /site/.vitepress/theme/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/.vitepress/theme/custom.css -------------------------------------------------------------------------------- /site/.vitepress/theme/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/.vitepress/theme/index.js -------------------------------------------------------------------------------- /site/Development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/Development.md -------------------------------------------------------------------------------- /site/Getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/Getting-started.md -------------------------------------------------------------------------------- /site/InstallVirtualEnvironment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/InstallVirtualEnvironment.md -------------------------------------------------------------------------------- /site/Menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/Menu.md -------------------------------------------------------------------------------- /site/MultipleConfigurationFiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/MultipleConfigurationFiles.md -------------------------------------------------------------------------------- /site/Nix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/Nix.md -------------------------------------------------------------------------------- /site/Optimizations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/Optimizations.md -------------------------------------------------------------------------------- /site/Plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/Plugins.md -------------------------------------------------------------------------------- /site/Troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/Troubleshooting.md -------------------------------------------------------------------------------- /site/Variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/Variables.md -------------------------------------------------------------------------------- /site/bar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/bar.md -------------------------------------------------------------------------------- /site/components/CommandList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/components/CommandList.vue -------------------------------------------------------------------------------- /site/components/PluginList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/components/PluginList.vue -------------------------------------------------------------------------------- /site/expose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/expose.md -------------------------------------------------------------------------------- /site/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/favicon-16x16.png -------------------------------------------------------------------------------- /site/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/favicon-32x32.png -------------------------------------------------------------------------------- /site/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/favicon.ico -------------------------------------------------------------------------------- /site/fcitx5_switcher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/fcitx5_switcher.md -------------------------------------------------------------------------------- /site/fetch_client_menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/fetch_client_menu.md -------------------------------------------------------------------------------- /site/filters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/filters.md -------------------------------------------------------------------------------- /site/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/index.md -------------------------------------------------------------------------------- /site/layout_center.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/layout_center.md -------------------------------------------------------------------------------- /site/lost_windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/lost_windows.md -------------------------------------------------------------------------------- /site/magnify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/magnify.md -------------------------------------------------------------------------------- /site/make_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/make_version.sh -------------------------------------------------------------------------------- /site/monitors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/monitors.md -------------------------------------------------------------------------------- /site/public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/public/icon.png -------------------------------------------------------------------------------- /site/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/public/logo.png -------------------------------------------------------------------------------- /site/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/public/logo.svg -------------------------------------------------------------------------------- /site/scratchpads.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/scratchpads.md -------------------------------------------------------------------------------- /site/scratchpads_advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/scratchpads_advanced.md -------------------------------------------------------------------------------- /site/scratchpads_nonstandard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/scratchpads_nonstandard.md -------------------------------------------------------------------------------- /site/shift_monitors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/shift_monitors.md -------------------------------------------------------------------------------- /site/shortcuts_menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/shortcuts_menu.md -------------------------------------------------------------------------------- /site/system_notifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/system_notifier.md -------------------------------------------------------------------------------- /site/toggle_dpms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/toggle_dpms.md -------------------------------------------------------------------------------- /site/toggle_special.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/toggle_special.md -------------------------------------------------------------------------------- /site/versions/2.3.5/Development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.5/Development.md -------------------------------------------------------------------------------- /site/versions/2.3.5/Getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.5/Getting-started.md -------------------------------------------------------------------------------- /site/versions/2.3.5/Menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.5/Menu.md -------------------------------------------------------------------------------- /site/versions/2.3.5/MultipleConfigurationFiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.5/MultipleConfigurationFiles.md -------------------------------------------------------------------------------- /site/versions/2.3.5/Nix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.5/Nix.md -------------------------------------------------------------------------------- /site/versions/2.3.5/Optimizations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.5/Optimizations.md -------------------------------------------------------------------------------- /site/versions/2.3.5/Plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.5/Plugins.md -------------------------------------------------------------------------------- /site/versions/2.3.5/Troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.5/Troubleshooting.md -------------------------------------------------------------------------------- /site/versions/2.3.5/Variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.5/Variables.md -------------------------------------------------------------------------------- /site/versions/2.3.5/expose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.5/expose.md -------------------------------------------------------------------------------- /site/versions/2.3.5/fetch_client_menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.5/fetch_client_menu.md -------------------------------------------------------------------------------- /site/versions/2.3.5/filters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.5/filters.md -------------------------------------------------------------------------------- /site/versions/2.3.5/gbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.5/gbar.md -------------------------------------------------------------------------------- /site/versions/2.3.5/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.5/index.md -------------------------------------------------------------------------------- /site/versions/2.3.5/layout_center.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.5/layout_center.md -------------------------------------------------------------------------------- /site/versions/2.3.5/lost_windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.5/lost_windows.md -------------------------------------------------------------------------------- /site/versions/2.3.5/magnify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.5/magnify.md -------------------------------------------------------------------------------- /site/versions/2.3.5/monitors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.5/monitors.md -------------------------------------------------------------------------------- /site/versions/2.3.5/scratchpads.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.5/scratchpads.md -------------------------------------------------------------------------------- /site/versions/2.3.5/scratchpads_advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.5/scratchpads_advanced.md -------------------------------------------------------------------------------- /site/versions/2.3.5/scratchpads_nonstandard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.5/scratchpads_nonstandard.md -------------------------------------------------------------------------------- /site/versions/2.3.5/shift_monitors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.5/shift_monitors.md -------------------------------------------------------------------------------- /site/versions/2.3.5/shortcuts_menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.5/shortcuts_menu.md -------------------------------------------------------------------------------- /site/versions/2.3.5/system_notifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.5/system_notifier.md -------------------------------------------------------------------------------- /site/versions/2.3.5/toggle_dpms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.5/toggle_dpms.md -------------------------------------------------------------------------------- /site/versions/2.3.5/toggle_special.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.5/toggle_special.md -------------------------------------------------------------------------------- /site/versions/2.3.5/wallpapers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.5/wallpapers.md -------------------------------------------------------------------------------- /site/versions/2.3.5/workspaces_follow_focus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.5/workspaces_follow_focus.md -------------------------------------------------------------------------------- /site/versions/2.3.6,7/Development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.6,7/Development.md -------------------------------------------------------------------------------- /site/versions/2.3.6,7/Getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.6,7/Getting-started.md -------------------------------------------------------------------------------- /site/versions/2.3.6,7/Menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.6,7/Menu.md -------------------------------------------------------------------------------- /site/versions/2.3.6,7/MultipleConfigurationFiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.6,7/MultipleConfigurationFiles.md -------------------------------------------------------------------------------- /site/versions/2.3.6,7/Nix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.6,7/Nix.md -------------------------------------------------------------------------------- /site/versions/2.3.6,7/Optimizations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.6,7/Optimizations.md -------------------------------------------------------------------------------- /site/versions/2.3.6,7/Plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.6,7/Plugins.md -------------------------------------------------------------------------------- /site/versions/2.3.6,7/Troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.6,7/Troubleshooting.md -------------------------------------------------------------------------------- /site/versions/2.3.6,7/Variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.6,7/Variables.md -------------------------------------------------------------------------------- /site/versions/2.3.6,7/expose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.6,7/expose.md -------------------------------------------------------------------------------- /site/versions/2.3.6,7/fetch_client_menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.6,7/fetch_client_menu.md -------------------------------------------------------------------------------- /site/versions/2.3.6,7/filters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.6,7/filters.md -------------------------------------------------------------------------------- /site/versions/2.3.6,7/gbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.6,7/gbar.md -------------------------------------------------------------------------------- /site/versions/2.3.6,7/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.6,7/index.md -------------------------------------------------------------------------------- /site/versions/2.3.6,7/layout_center.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.6,7/layout_center.md -------------------------------------------------------------------------------- /site/versions/2.3.6,7/lost_windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.6,7/lost_windows.md -------------------------------------------------------------------------------- /site/versions/2.3.6,7/magnify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.6,7/magnify.md -------------------------------------------------------------------------------- /site/versions/2.3.6,7/monitors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.6,7/monitors.md -------------------------------------------------------------------------------- /site/versions/2.3.6,7/scratchpads.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.6,7/scratchpads.md -------------------------------------------------------------------------------- /site/versions/2.3.6,7/scratchpads_advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.6,7/scratchpads_advanced.md -------------------------------------------------------------------------------- /site/versions/2.3.6,7/scratchpads_nonstandard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.6,7/scratchpads_nonstandard.md -------------------------------------------------------------------------------- /site/versions/2.3.6,7/shift_monitors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.6,7/shift_monitors.md -------------------------------------------------------------------------------- /site/versions/2.3.6,7/shortcuts_menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.6,7/shortcuts_menu.md -------------------------------------------------------------------------------- /site/versions/2.3.6,7/system_notifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.6,7/system_notifier.md -------------------------------------------------------------------------------- /site/versions/2.3.6,7/toggle_dpms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.6,7/toggle_dpms.md -------------------------------------------------------------------------------- /site/versions/2.3.6,7/toggle_special.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.6,7/toggle_special.md -------------------------------------------------------------------------------- /site/versions/2.3.6,7/wallpapers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.6,7/wallpapers.md -------------------------------------------------------------------------------- /site/versions/2.3.6,7/workspaces_follow_focus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.6,7/workspaces_follow_focus.md -------------------------------------------------------------------------------- /site/versions/2.3.8/Development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.8/Development.md -------------------------------------------------------------------------------- /site/versions/2.3.8/Getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.8/Getting-started.md -------------------------------------------------------------------------------- /site/versions/2.3.8/Menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.8/Menu.md -------------------------------------------------------------------------------- /site/versions/2.3.8/MultipleConfigurationFiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.8/MultipleConfigurationFiles.md -------------------------------------------------------------------------------- /site/versions/2.3.8/Nix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.8/Nix.md -------------------------------------------------------------------------------- /site/versions/2.3.8/Optimizations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.8/Optimizations.md -------------------------------------------------------------------------------- /site/versions/2.3.8/Plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.8/Plugins.md -------------------------------------------------------------------------------- /site/versions/2.3.8/Troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.8/Troubleshooting.md -------------------------------------------------------------------------------- /site/versions/2.3.8/Variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.8/Variables.md -------------------------------------------------------------------------------- /site/versions/2.3.8/expose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.8/expose.md -------------------------------------------------------------------------------- /site/versions/2.3.8/fetch_client_menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.8/fetch_client_menu.md -------------------------------------------------------------------------------- /site/versions/2.3.8/filters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.8/filters.md -------------------------------------------------------------------------------- /site/versions/2.3.8/gbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.8/gbar.md -------------------------------------------------------------------------------- /site/versions/2.3.8/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.8/index.md -------------------------------------------------------------------------------- /site/versions/2.3.8/layout_center.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.8/layout_center.md -------------------------------------------------------------------------------- /site/versions/2.3.8/lost_windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.8/lost_windows.md -------------------------------------------------------------------------------- /site/versions/2.3.8/magnify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.8/magnify.md -------------------------------------------------------------------------------- /site/versions/2.3.8/monitors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.8/monitors.md -------------------------------------------------------------------------------- /site/versions/2.3.8/scratchpads.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.8/scratchpads.md -------------------------------------------------------------------------------- /site/versions/2.3.8/scratchpads_advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.8/scratchpads_advanced.md -------------------------------------------------------------------------------- /site/versions/2.3.8/scratchpads_nonstandard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.8/scratchpads_nonstandard.md -------------------------------------------------------------------------------- /site/versions/2.3.8/shift_monitors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.8/shift_monitors.md -------------------------------------------------------------------------------- /site/versions/2.3.8/shortcuts_menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.8/shortcuts_menu.md -------------------------------------------------------------------------------- /site/versions/2.3.8/system_notifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.8/system_notifier.md -------------------------------------------------------------------------------- /site/versions/2.3.8/toggle_dpms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.8/toggle_dpms.md -------------------------------------------------------------------------------- /site/versions/2.3.8/toggle_special.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.8/toggle_special.md -------------------------------------------------------------------------------- /site/versions/2.3.8/wallpapers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.8/wallpapers.md -------------------------------------------------------------------------------- /site/versions/2.3.8/workspaces_follow_focus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.3.8/workspaces_follow_focus.md -------------------------------------------------------------------------------- /site/versions/2.4.0/Development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.0/Development.md -------------------------------------------------------------------------------- /site/versions/2.4.0/Getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.0/Getting-started.md -------------------------------------------------------------------------------- /site/versions/2.4.0/InstallVirtualEnvironment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.0/InstallVirtualEnvironment.md -------------------------------------------------------------------------------- /site/versions/2.4.0/Menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.0/Menu.md -------------------------------------------------------------------------------- /site/versions/2.4.0/MultipleConfigurationFiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.0/MultipleConfigurationFiles.md -------------------------------------------------------------------------------- /site/versions/2.4.0/Nix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.0/Nix.md -------------------------------------------------------------------------------- /site/versions/2.4.0/Optimizations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.0/Optimizations.md -------------------------------------------------------------------------------- /site/versions/2.4.0/Plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.0/Plugins.md -------------------------------------------------------------------------------- /site/versions/2.4.0/Troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.0/Troubleshooting.md -------------------------------------------------------------------------------- /site/versions/2.4.0/Variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.0/Variables.md -------------------------------------------------------------------------------- /site/versions/2.4.0/expose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.0/expose.md -------------------------------------------------------------------------------- /site/versions/2.4.0/fetch_client_menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.0/fetch_client_menu.md -------------------------------------------------------------------------------- /site/versions/2.4.0/filters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.0/filters.md -------------------------------------------------------------------------------- /site/versions/2.4.0/gbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.0/gbar.md -------------------------------------------------------------------------------- /site/versions/2.4.0/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.0/index.md -------------------------------------------------------------------------------- /site/versions/2.4.0/layout_center.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.0/layout_center.md -------------------------------------------------------------------------------- /site/versions/2.4.0/lost_windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.0/lost_windows.md -------------------------------------------------------------------------------- /site/versions/2.4.0/magnify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.0/magnify.md -------------------------------------------------------------------------------- /site/versions/2.4.0/monitors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.0/monitors.md -------------------------------------------------------------------------------- /site/versions/2.4.0/scratchpads.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.0/scratchpads.md -------------------------------------------------------------------------------- /site/versions/2.4.0/scratchpads_advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.0/scratchpads_advanced.md -------------------------------------------------------------------------------- /site/versions/2.4.0/scratchpads_nonstandard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.0/scratchpads_nonstandard.md -------------------------------------------------------------------------------- /site/versions/2.4.0/shift_monitors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.0/shift_monitors.md -------------------------------------------------------------------------------- /site/versions/2.4.0/shortcuts_menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.0/shortcuts_menu.md -------------------------------------------------------------------------------- /site/versions/2.4.0/system_notifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.0/system_notifier.md -------------------------------------------------------------------------------- /site/versions/2.4.0/toggle_dpms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.0/toggle_dpms.md -------------------------------------------------------------------------------- /site/versions/2.4.0/toggle_special.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.0/toggle_special.md -------------------------------------------------------------------------------- /site/versions/2.4.0/wallpapers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.0/wallpapers.md -------------------------------------------------------------------------------- /site/versions/2.4.0/workspaces_follow_focus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.0/workspaces_follow_focus.md -------------------------------------------------------------------------------- /site/versions/2.4.1+/Development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.1+/Development.md -------------------------------------------------------------------------------- /site/versions/2.4.1+/Getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.1+/Getting-started.md -------------------------------------------------------------------------------- /site/versions/2.4.1+/InstallVirtualEnvironment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.1+/InstallVirtualEnvironment.md -------------------------------------------------------------------------------- /site/versions/2.4.1+/Menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.1+/Menu.md -------------------------------------------------------------------------------- /site/versions/2.4.1+/MultipleConfigurationFiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.1+/MultipleConfigurationFiles.md -------------------------------------------------------------------------------- /site/versions/2.4.1+/Nix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.1+/Nix.md -------------------------------------------------------------------------------- /site/versions/2.4.1+/Optimizations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.1+/Optimizations.md -------------------------------------------------------------------------------- /site/versions/2.4.1+/Plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.1+/Plugins.md -------------------------------------------------------------------------------- /site/versions/2.4.1+/Troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.1+/Troubleshooting.md -------------------------------------------------------------------------------- /site/versions/2.4.1+/Variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.1+/Variables.md -------------------------------------------------------------------------------- /site/versions/2.4.1+/expose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.1+/expose.md -------------------------------------------------------------------------------- /site/versions/2.4.1+/fetch_client_menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.1+/fetch_client_menu.md -------------------------------------------------------------------------------- /site/versions/2.4.1+/filters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.1+/filters.md -------------------------------------------------------------------------------- /site/versions/2.4.1+/gbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.1+/gbar.md -------------------------------------------------------------------------------- /site/versions/2.4.1+/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.1+/index.md -------------------------------------------------------------------------------- /site/versions/2.4.1+/layout_center.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.1+/layout_center.md -------------------------------------------------------------------------------- /site/versions/2.4.1+/lost_windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.1+/lost_windows.md -------------------------------------------------------------------------------- /site/versions/2.4.1+/magnify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.1+/magnify.md -------------------------------------------------------------------------------- /site/versions/2.4.1+/monitors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.1+/monitors.md -------------------------------------------------------------------------------- /site/versions/2.4.1+/scratchpads.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.1+/scratchpads.md -------------------------------------------------------------------------------- /site/versions/2.4.1+/scratchpads_advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.1+/scratchpads_advanced.md -------------------------------------------------------------------------------- /site/versions/2.4.1+/scratchpads_nonstandard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.1+/scratchpads_nonstandard.md -------------------------------------------------------------------------------- /site/versions/2.4.1+/shift_monitors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.1+/shift_monitors.md -------------------------------------------------------------------------------- /site/versions/2.4.1+/shortcuts_menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.1+/shortcuts_menu.md -------------------------------------------------------------------------------- /site/versions/2.4.1+/system_notifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.1+/system_notifier.md -------------------------------------------------------------------------------- /site/versions/2.4.1+/toggle_dpms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.1+/toggle_dpms.md -------------------------------------------------------------------------------- /site/versions/2.4.1+/toggle_special.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.1+/toggle_special.md -------------------------------------------------------------------------------- /site/versions/2.4.1+/wallpapers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.1+/wallpapers.md -------------------------------------------------------------------------------- /site/versions/2.4.1+/workspaces_follow_focus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.1+/workspaces_follow_focus.md -------------------------------------------------------------------------------- /site/versions/2.4.6/Development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.6/Development.md -------------------------------------------------------------------------------- /site/versions/2.4.6/Getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.6/Getting-started.md -------------------------------------------------------------------------------- /site/versions/2.4.6/InstallVirtualEnvironment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.6/InstallVirtualEnvironment.md -------------------------------------------------------------------------------- /site/versions/2.4.6/Menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.6/Menu.md -------------------------------------------------------------------------------- /site/versions/2.4.6/MultipleConfigurationFiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.6/MultipleConfigurationFiles.md -------------------------------------------------------------------------------- /site/versions/2.4.6/Nix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.6/Nix.md -------------------------------------------------------------------------------- /site/versions/2.4.6/Optimizations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.6/Optimizations.md -------------------------------------------------------------------------------- /site/versions/2.4.6/Plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.6/Plugins.md -------------------------------------------------------------------------------- /site/versions/2.4.6/Troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.6/Troubleshooting.md -------------------------------------------------------------------------------- /site/versions/2.4.6/Variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.6/Variables.md -------------------------------------------------------------------------------- /site/versions/2.4.6/bar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.6/bar.md -------------------------------------------------------------------------------- /site/versions/2.4.6/expose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.6/expose.md -------------------------------------------------------------------------------- /site/versions/2.4.6/fcitx5_switcher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.6/fcitx5_switcher.md -------------------------------------------------------------------------------- /site/versions/2.4.6/fetch_client_menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.6/fetch_client_menu.md -------------------------------------------------------------------------------- /site/versions/2.4.6/filters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.6/filters.md -------------------------------------------------------------------------------- /site/versions/2.4.6/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.6/index.md -------------------------------------------------------------------------------- /site/versions/2.4.6/layout_center.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.6/layout_center.md -------------------------------------------------------------------------------- /site/versions/2.4.6/lost_windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.6/lost_windows.md -------------------------------------------------------------------------------- /site/versions/2.4.6/magnify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.6/magnify.md -------------------------------------------------------------------------------- /site/versions/2.4.6/monitors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.6/monitors.md -------------------------------------------------------------------------------- /site/versions/2.4.6/scratchpads.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.6/scratchpads.md -------------------------------------------------------------------------------- /site/versions/2.4.6/scratchpads_advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.6/scratchpads_advanced.md -------------------------------------------------------------------------------- /site/versions/2.4.6/scratchpads_nonstandard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.6/scratchpads_nonstandard.md -------------------------------------------------------------------------------- /site/versions/2.4.6/shift_monitors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.6/shift_monitors.md -------------------------------------------------------------------------------- /site/versions/2.4.6/shortcuts_menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.6/shortcuts_menu.md -------------------------------------------------------------------------------- /site/versions/2.4.6/system_notifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.6/system_notifier.md -------------------------------------------------------------------------------- /site/versions/2.4.6/toggle_dpms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.6/toggle_dpms.md -------------------------------------------------------------------------------- /site/versions/2.4.6/toggle_special.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.6/toggle_special.md -------------------------------------------------------------------------------- /site/versions/2.4.6/wallpapers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.6/wallpapers.md -------------------------------------------------------------------------------- /site/versions/2.4.6/workspaces_follow_focus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.6/workspaces_follow_focus.md -------------------------------------------------------------------------------- /site/versions/2.4.7/Development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.7/Development.md -------------------------------------------------------------------------------- /site/versions/2.4.7/Getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.7/Getting-started.md -------------------------------------------------------------------------------- /site/versions/2.4.7/InstallVirtualEnvironment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.7/InstallVirtualEnvironment.md -------------------------------------------------------------------------------- /site/versions/2.4.7/Menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.7/Menu.md -------------------------------------------------------------------------------- /site/versions/2.4.7/MultipleConfigurationFiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.7/MultipleConfigurationFiles.md -------------------------------------------------------------------------------- /site/versions/2.4.7/Nix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.7/Nix.md -------------------------------------------------------------------------------- /site/versions/2.4.7/Optimizations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.7/Optimizations.md -------------------------------------------------------------------------------- /site/versions/2.4.7/Plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.7/Plugins.md -------------------------------------------------------------------------------- /site/versions/2.4.7/Troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.7/Troubleshooting.md -------------------------------------------------------------------------------- /site/versions/2.4.7/Variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.7/Variables.md -------------------------------------------------------------------------------- /site/versions/2.4.7/bar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.7/bar.md -------------------------------------------------------------------------------- /site/versions/2.4.7/expose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.7/expose.md -------------------------------------------------------------------------------- /site/versions/2.4.7/fcitx5_switcher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.7/fcitx5_switcher.md -------------------------------------------------------------------------------- /site/versions/2.4.7/fetch_client_menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.7/fetch_client_menu.md -------------------------------------------------------------------------------- /site/versions/2.4.7/filters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.7/filters.md -------------------------------------------------------------------------------- /site/versions/2.4.7/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.7/index.md -------------------------------------------------------------------------------- /site/versions/2.4.7/layout_center.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.7/layout_center.md -------------------------------------------------------------------------------- /site/versions/2.4.7/lost_windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.7/lost_windows.md -------------------------------------------------------------------------------- /site/versions/2.4.7/magnify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.7/magnify.md -------------------------------------------------------------------------------- /site/versions/2.4.7/monitors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.7/monitors.md -------------------------------------------------------------------------------- /site/versions/2.4.7/scratchpads.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.7/scratchpads.md -------------------------------------------------------------------------------- /site/versions/2.4.7/scratchpads_advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.7/scratchpads_advanced.md -------------------------------------------------------------------------------- /site/versions/2.4.7/scratchpads_nonstandard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.7/scratchpads_nonstandard.md -------------------------------------------------------------------------------- /site/versions/2.4.7/shift_monitors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.7/shift_monitors.md -------------------------------------------------------------------------------- /site/versions/2.4.7/shortcuts_menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.7/shortcuts_menu.md -------------------------------------------------------------------------------- /site/versions/2.4.7/system_notifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.7/system_notifier.md -------------------------------------------------------------------------------- /site/versions/2.4.7/toggle_dpms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.7/toggle_dpms.md -------------------------------------------------------------------------------- /site/versions/2.4.7/toggle_special.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.7/toggle_special.md -------------------------------------------------------------------------------- /site/versions/2.4.7/wallpapers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.7/wallpapers.md -------------------------------------------------------------------------------- /site/versions/2.4.7/workspaces_follow_focus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/versions/2.4.7/workspaces_follow_focus.md -------------------------------------------------------------------------------- /site/wallpapers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/wallpapers.md -------------------------------------------------------------------------------- /site/workspaces_follow_focus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/site/workspaces_follow_focus.md -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | # __init__.py 2 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/sample_config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/tests/sample_config.toml -------------------------------------------------------------------------------- /tests/test_external_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/tests/test_external_plugins.py -------------------------------------------------------------------------------- /tests/test_load_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/tests/test_load_all.py -------------------------------------------------------------------------------- /tests/test_plugin_layout_center.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/tests/test_plugin_layout_center.py -------------------------------------------------------------------------------- /tests/test_plugin_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/tests/test_plugin_monitor.py -------------------------------------------------------------------------------- /tests/test_plugin_scratchpads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/tests/test_plugin_scratchpads.py -------------------------------------------------------------------------------- /tests/test_plugin_toggle_dpms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/tests/test_plugin_toggle_dpms.py -------------------------------------------------------------------------------- /tests/test_plugin_workspaces_follow_focus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/tests/test_plugin_workspaces_follow_focus.py -------------------------------------------------------------------------------- /tests/test_pyprland.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/tests/test_pyprland.py -------------------------------------------------------------------------------- /tests/test_string_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/tests/test_string_template.py -------------------------------------------------------------------------------- /tests/testtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/tests/testtools.py -------------------------------------------------------------------------------- /tests/vreg/01_client_id_change.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/tests/vreg/01_client_id_change.py -------------------------------------------------------------------------------- /tests/vreg/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/tests/vreg/run_tests.sh -------------------------------------------------------------------------------- /tickets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/tickets.rst -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprland-community/pyprland/HEAD/tox.ini --------------------------------------------------------------------------------