Files
dotfiles/.local/bin/station-hyprland-window-close-all
2026-03-06 21:09:52 +00:00

10 lines
200 B
Bash
Executable File

#!/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