Regenerated

This commit is contained in:
2026-04-29 14:23:41 +02:00
parent 17d3f13d12
commit 0bb5e3c9bd
9 changed files with 435 additions and 601 deletions
@@ -1,9 +0,0 @@
#!/usr/bin/env bash
socket="$XDG_RUNTIME_DIR/hypr/$HYPRLAND_INSTANCE_SIGNATURE/.socket2.sock"
socat -U - UNIX-CONNECT:$socket | while read -r line; do
if [[ "$line" == workspace* ]]; then
~/.config/hypr/scripts/set-workspace-wallpaper.sh
fi
done
@@ -0,0 +1,12 @@
#!/usr/bin/env bash
SOCK="$XDG_RUNTIME_DIR/hypr/$HYPRLAND_INSTANCE_SIGNATURE/.socket2.sock"
socat -U - UNIX-CONNECT:"$SOCK" | while read -r line; do
case "$line" in
workspace>>*)
WS="${line#workspace>>}"
~/Wallpapers/scripts/ws-wallpaper.sh "$WS"
;;
esac
done