├── .github ├── CODEOWNERS ├── dependabot.yml ├── preview.png ├── release.yml └── workflows │ ├── rust.yml │ └── typos.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── flake.lock ├── flake.nix ├── guides ├── en │ ├── Animations.md │ ├── Binds.md │ ├── Dispatchers.md │ ├── Dwindle-Layout.md │ ├── Envs.md │ ├── Execs.md │ ├── Gestures.md │ ├── Layer-Rules.md │ ├── Master-Layout.md │ ├── Monitors.md │ ├── Window-Rules.md │ └── Workspace-Rules.md ├── ru │ ├── Animations.md │ ├── Binds.md │ ├── Dispatchers.md │ ├── Dwindle-Layout.md │ ├── Envs.md │ ├── Execs.md │ ├── Gestures.md │ ├── Layer-Rules.md │ ├── Master-Layout.md │ ├── Monitors.md │ ├── Window-Rules.md │ └── Workspace-Rules.md └── zh-CN │ ├── Animations.md │ ├── Binds.md │ ├── Dispatchers.md │ ├── Dwindle-Layout.md │ ├── Envs.md │ ├── Execs.md │ ├── Gestures.md │ ├── Layer-Rules.md │ ├── Master-Layout.md │ ├── Monitors.md │ ├── Window-Rules.md │ └── Workspace-Rules.md ├── hyprviz.desktop ├── locales ├── gui.yml ├── guides.yml ├── main.yml ├── system_info.yml ├── utils.yml └── widget.yml ├── readme.md └── src ├── gui.rs ├── guides.rs ├── main.rs ├── system_info.rs ├── utils.rs └── widget.rs /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @timasoft 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/.github/preview.png -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.github/workflows/typos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/.github/workflows/typos.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/LICENSE -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/flake.nix -------------------------------------------------------------------------------- /guides/en/Animations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/guides/en/Animations.md -------------------------------------------------------------------------------- /guides/en/Binds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/guides/en/Binds.md -------------------------------------------------------------------------------- /guides/en/Dispatchers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/guides/en/Dispatchers.md -------------------------------------------------------------------------------- /guides/en/Dwindle-Layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/guides/en/Dwindle-Layout.md -------------------------------------------------------------------------------- /guides/en/Envs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/guides/en/Envs.md -------------------------------------------------------------------------------- /guides/en/Execs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/guides/en/Execs.md -------------------------------------------------------------------------------- /guides/en/Gestures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/guides/en/Gestures.md -------------------------------------------------------------------------------- /guides/en/Layer-Rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/guides/en/Layer-Rules.md -------------------------------------------------------------------------------- /guides/en/Master-Layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/guides/en/Master-Layout.md -------------------------------------------------------------------------------- /guides/en/Monitors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/guides/en/Monitors.md -------------------------------------------------------------------------------- /guides/en/Window-Rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/guides/en/Window-Rules.md -------------------------------------------------------------------------------- /guides/en/Workspace-Rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/guides/en/Workspace-Rules.md -------------------------------------------------------------------------------- /guides/ru/Animations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/guides/ru/Animations.md -------------------------------------------------------------------------------- /guides/ru/Binds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/guides/ru/Binds.md -------------------------------------------------------------------------------- /guides/ru/Dispatchers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/guides/ru/Dispatchers.md -------------------------------------------------------------------------------- /guides/ru/Dwindle-Layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/guides/ru/Dwindle-Layout.md -------------------------------------------------------------------------------- /guides/ru/Envs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/guides/ru/Envs.md -------------------------------------------------------------------------------- /guides/ru/Execs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/guides/ru/Execs.md -------------------------------------------------------------------------------- /guides/ru/Gestures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/guides/ru/Gestures.md -------------------------------------------------------------------------------- /guides/ru/Layer-Rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/guides/ru/Layer-Rules.md -------------------------------------------------------------------------------- /guides/ru/Master-Layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/guides/ru/Master-Layout.md -------------------------------------------------------------------------------- /guides/ru/Monitors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/guides/ru/Monitors.md -------------------------------------------------------------------------------- /guides/ru/Window-Rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/guides/ru/Window-Rules.md -------------------------------------------------------------------------------- /guides/ru/Workspace-Rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/guides/ru/Workspace-Rules.md -------------------------------------------------------------------------------- /guides/zh-CN/Animations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/guides/zh-CN/Animations.md -------------------------------------------------------------------------------- /guides/zh-CN/Binds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/guides/zh-CN/Binds.md -------------------------------------------------------------------------------- /guides/zh-CN/Dispatchers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/guides/zh-CN/Dispatchers.md -------------------------------------------------------------------------------- /guides/zh-CN/Dwindle-Layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/guides/zh-CN/Dwindle-Layout.md -------------------------------------------------------------------------------- /guides/zh-CN/Envs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/guides/zh-CN/Envs.md -------------------------------------------------------------------------------- /guides/zh-CN/Execs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/guides/zh-CN/Execs.md -------------------------------------------------------------------------------- /guides/zh-CN/Gestures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/guides/zh-CN/Gestures.md -------------------------------------------------------------------------------- /guides/zh-CN/Layer-Rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/guides/zh-CN/Layer-Rules.md -------------------------------------------------------------------------------- /guides/zh-CN/Master-Layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/guides/zh-CN/Master-Layout.md -------------------------------------------------------------------------------- /guides/zh-CN/Monitors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/guides/zh-CN/Monitors.md -------------------------------------------------------------------------------- /guides/zh-CN/Window-Rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/guides/zh-CN/Window-Rules.md -------------------------------------------------------------------------------- /guides/zh-CN/Workspace-Rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/guides/zh-CN/Workspace-Rules.md -------------------------------------------------------------------------------- /hyprviz.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/hyprviz.desktop -------------------------------------------------------------------------------- /locales/gui.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/locales/gui.yml -------------------------------------------------------------------------------- /locales/guides.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/locales/guides.yml -------------------------------------------------------------------------------- /locales/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/locales/main.yml -------------------------------------------------------------------------------- /locales/system_info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/locales/system_info.yml -------------------------------------------------------------------------------- /locales/utils.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/locales/utils.yml -------------------------------------------------------------------------------- /locales/widget.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/locales/widget.yml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/readme.md -------------------------------------------------------------------------------- /src/gui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/src/gui.rs -------------------------------------------------------------------------------- /src/guides.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/src/guides.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/system_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/src/system_info.rs -------------------------------------------------------------------------------- /src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/src/utils.rs -------------------------------------------------------------------------------- /src/widget.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timasoft/hyprviz/HEAD/src/widget.rs --------------------------------------------------------------------------------