#!/usr/bin/env bash set -euo pipefail cur="$(hyprctl getoption general:layout | awk '/str:/ {print $2; exit}')" if [[ "$cur" == "scrolling" ]]; then hyprctl keyword general:layout dwindle else hyprctl keyword general:layout scrolling fi