Files
dotfiles/.local/bin/station-hyprland-workspace-layout-toggle
T

17 lines
517 B
Bash
Raw Normal View History

2026-03-06 21:09:52 +00:00
#!/bin/bash
# Toggle the layout on the current active workspace between dwindle and scrolling
ACTIVE_WORKSPACE=$(hyprctl activeworkspace -j | jq -r '.id')
CURRENT_LAYOUT=$(hyprctl activeworkspace -j | jq -r '.tiledLayout')
case "$CURRENT_LAYOUT" in
dwindle) NEW_LAYOUT=scrolling ;;
2026-05-13 22:01:05 +01:00
scrolling) NEW_LAYOUT=monocle ;;
monocle) NEW_LAYOUT=master ;;
2026-03-06 21:09:52 +00:00
*) NEW_LAYOUT=dwindle ;;
esac
hyprctl keyword workspace $ACTIVE_WORKSPACE, layout:$NEW_LAYOUT
notify-send "󱂬 Workspace layout set to $NEW_LAYOUT"