Adding indicators to hyprscrolling + dynamic columnwidth per monitor

This commit is contained in:
2026-02-25 13:51:53 +01:00
parent 496ba5e53f
commit d8500cde2e
3 changed files with 21 additions and 0 deletions
@@ -0,0 +1,17 @@
#!/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