Files
dotfiles/.local/bin/station-hyprland-window-close-all

10 lines
200 B
Plaintext
Raw Normal View History

2026-03-06 21:09:52 +00:00
#!/bin/bash
# Close all open windows
hyprctl clients -j | \
jq -r ".[].address" | \
xargs -I{} hyprctl dispatch closewindow address:{}
# Move to first workspace
hyprctl dispatch workspace 1