Adapted overflow script

This commit is contained in:
2026-02-26 15:05:14 +01:00
parent 7aa2c51438
commit 7b09e630fb
2 changed files with 25 additions and 26 deletions
@@ -1,17 +0,0 @@
#!/usr/bin/env bash
set -euo pipefail
# Adjust these to match `hyprctl monitors`
ULTRAWIDE="DP-1"
LAPTOP="eDP-1"
MONITOR="$1"
case "$MONITOR" in
"$ULTRAWIDE")
hyprctl dispatch layoutmsg colresize all 0.25
;;
"$LAPTOP")
hyprctl dispatch layoutmsg colresize all 1.0
;;
esac