From e2add462c0d66120867cdb7181a0d9c413f3e4c1 Mon Sep 17 00:00:00 2001 From: Justine Smithies Date: Tue, 6 Feb 2024 20:44:09 +0000 Subject: Initial commit of Eww config --- .config/eww/scripts/monitor.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 .config/eww/scripts/monitor.sh (limited to '.config/eww/scripts/monitor.sh') 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 -- cgit v1.2.3