aboutsummaryrefslogtreecommitdiff
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
commit0c45efe71c8ed0ca2776348fbdb1a3b90d5d3b6d (patch)
tree66a93a77236920598d0a570b682891a80a08dc4e /dotfiles/hyprland/.local/bin/layout-resize
parentc0b56b3aa8a1da1bea92d0b11c809211952cf371 (diff)
downloadarchsetup-0c45efe71c8ed0ca2776348fbdb1a3b90d5d3b6d.tar.gz
archsetup-0c45efe71c8ed0ca2776348fbdb1a3b90d5d3b6d.zip
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