summaryrefslogtreecommitdiff
path: root/dotfiles/hyprland/.local/bin/layout-resize
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-03-07 13:00:34 -0600
committerCraig Jennings <c@cjennings.net>2026-03-07 13:00:34 -0600
commitf6a539677ef9ab98c25220174c2162ca375d15d0 (patch)
treef40fd83972acd898bc26dab7612f296882e713ba /dotfiles/hyprland/.local/bin/layout-resize
parentd1f84e5c3aa6fa9961c761822a56a0d274fc6711 (diff)
fix: update layout-resize and waybar-netspeed for 0.54
layout-resize: replace removed splitratio dispatcher with layoutmsg mfact for master layout resizing. waybar-netspeed: replace iwgetid/proc/net/wireless with iw commands for SSID and signal strength (old tools no longer populated by kernel).
Diffstat (limited to 'dotfiles/hyprland/.local/bin/layout-resize')
-rwxr-xr-xdotfiles/hyprland/.local/bin/layout-resize4
1 files changed, 2 insertions, 2 deletions
diff --git a/dotfiles/hyprland/.local/bin/layout-resize b/dotfiles/hyprland/.local/bin/layout-resize
index c7e0151..70742c5 100755
--- a/dotfiles/hyprland/.local/bin/layout-resize
+++ b/dotfiles/hyprland/.local/bin/layout-resize
@@ -16,9 +16,9 @@ case "$LAYOUT" in
*)
# master, dwindle, etc.
if [ "$DIR" = "grow" ]; then
- hyprctl dispatch splitratio 0.05
+ hyprctl dispatch layoutmsg mfact 0.05
else
- hyprctl dispatch splitratio -0.05
+ hyprctl dispatch layoutmsg mfact -0.05
fi
;;
esac