This commit is contained in:
Zacharias-Brohn
2026-01-19 18:40:28 +01:00
parent 8bd6547af9
commit 567faff34e
85 changed files with 2182 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
#!/bin/zsh
XDG_RUNTIME_DIR="/run/user/1000"
handle() {
case $1 in
"screencast>>1,"*)
swaync-client --inhibitor-add "xdg-desktop-portal-hyprland" &
;;
"screencast>>0,"*)
swaync-client --inhibitor-remove "xdg-desktop-portal-hyprland" &
;;
esac
}
socat -U - UNIX-CONNECT:$XDG_RUNTIME_DIR/hypr/$HYPRLAND_INSTANCE_SIGNATURE/.socket2.sock | while read -r line; do handle "$line"; done