Dotfiles/desktopenvs/hyprland/scripts/toggle-layout.sh

12 lines
223 B
Bash
Executable File

#!/bin/bash
statecon=$( hyprctl getoption general:layout | grep master )
#notify-send $statecon
if [ "$statecon" != '' ]; then
hyprctl keyword general:layout dwindle
else
hyprctl keyword general:layout master
fi