Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/daniqss/hyprqtile
Qtile-like workspaces and monitors management for Hyprland
https://github.com/daniqss/hyprqtile
Last synced: about 1 month ago
JSON representation
Qtile-like workspaces and monitors management for Hyprland
- Host: GitHub
- URL: https://github.com/daniqss/hyprqtile
- Owner: daniqss
- License: gpl-3.0
- Created: 2024-06-13T23:18:02.000Z (8 months ago)
- Default Branch: master
- Last Pushed: 2024-11-21T10:22:57.000Z (2 months ago)
- Last Synced: 2024-12-18T16:36:23.552Z (about 1 month ago)
- Language: Rust
- Homepage:
- Size: 85 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# hyprqtile
![Crates.io Version](https://img.shields.io/crates/v/hyprqtile)
Qtile-like workspaces and monitors management for the Hyprland compositor that uses hyprland-rs to communicate with the compositor's sockets.# installation
## cargo
```bash
cargo install hyprqtile
```
> [!WARNING]
> Make sure that `~/.cargo/bin` is in your PATH# usage
```hyprlang
bind = SUPER, 1, exec, hyprqtile --workspace 1
bind = SUPER, 2, exec, hyprqtile --workspace 2
bind = SUPER, 3, exec, hyprqtile --workspace 3
bind = SUPER, 4, exec, hyprqtile --workspace 4bind = SUPER, right, exec, hyprqtile --next
bind = SUPER, left, exec, hyprqtile --previous
```# contributing
this program satisfies my needs, but if you want to add a feature, feel free to open a PR.
I don't use (nor understand) nix, so adding some nix magic to support it would be awesome.## todo
- [ ] add tests
- [ ] add shell completions
- [ ] add movetoworkspace dispatcher
- [ ] add aur# thanks to
- [hyprland-community](https://github.com/hyprland-community/) mainteiners, who wrote the amazing [hyprland-rs](https://github.com/hyprland-community/hyprland-rs) crate
- [taylor85345](https://github.com/taylor85345), who made this [script](https://github.com/taylor85345/hyprland-dotfiles/blob/master/hypr/scripts/workspace) from which I take the logic
- [donovanglover](https://github.com/donovanglover), who made [hyprnome](https://github.com/donovanglover/hyprnome/) from which I take the idea and I learn how to make a rust program that uses hyprland-rs and some clap tricks.