14 lines
290 B
Bash
Executable File
14 lines
290 B
Bash
Executable File
#!/bin/bash
|
|
|
|
statecon=$( hyprctl getoption general:layout | grep master )
|
|
#notify-send $statecon
|
|
if [ "$statecon" != '' ]; then
|
|
notify-send "Layout: Dwindle"
|
|
hyprctl keyword general:layout dwindle
|
|
else
|
|
notify-send "Layout: Master"
|
|
hyprctl keyword general:layout master
|
|
fi
|
|
|
|
|