From f6a539677ef9ab98c25220174c2162ca375d15d0 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sat, 7 Mar 2026 13:00:34 -0600 Subject: 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). --- dotfiles/hyprland/.local/bin/layout-resize | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dotfiles/hyprland/.local/bin/layout-resize') 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 -- cgit v1.2.3