Files
nixos/henrovnix_ok/assets/conf/desktop/hypr/scripts/toggle-layout-scrolling-dwindle.sh
T

9 lines
241 B
Bash

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