Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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 4

bind = 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.