diff options
| author | Craig Jennings <c@cjennings.net> | 2026-03-07 13:00:34 -0600 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-03-07 13:00:34 -0600 |
| commit | 50ad8cdb5f92c062b940d5332771d81b6c079f4d (patch) | |
| tree | 66a93a77236920598d0a570b682891a80a08dc4e /dotfiles/hyprland/.local/bin/layout-resize | |
| parent | c2796a9c873ef36943a22989ec0d1150753d3035 (diff) | |
| download | archsetup-50ad8cdb5f92c062b940d5332771d81b6c079f4d.tar.gz archsetup-50ad8cdb5f92c062b940d5332771d81b6c079f4d.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-x | dotfiles/hyprland/.local/bin/layout-resize | 4 |
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 |
