diff options
Diffstat (limited to '.config/eww/scripts/monitor.sh')
-rwxr-xr-x | .config/eww/scripts/monitor.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.config/eww/scripts/monitor.sh b/.config/eww/scripts/monitor.sh new file mode 100755 index 0000000..a211054 --- /dev/null +++ b/.config/eww/scripts/monitor.sh @@ -0,0 +1,11 @@ +#!/bin/sh + +function handle { + if [[ ${1:0:12} == "monitoradded" ]]; then + ~/.config/eww/scripts/start.sh + elif [[ ${1:0:14} == "monitorremoved" ]]; then + ~/.config/eww/scripts/start.sh + fi +} + +socat - UNIX-CONNECT:/tmp/hypr/$(echo $HYPRLAND_INSTANCE_SIGNATURE)/.socket2.sock | while read line; do handle $line; done |