Files
illogical-impulse/early/.config/eww/scripts/overview-wrapper
T
2024-02-22 15:35:06 +07:00

11 lines
225 B
Bash
Executable File

#!/usr/bin/bash
scripts/overview "$1"
if [ "$1" == "--once" ]; then
exit 0
else
socat -u UNIX-CONNECT:/tmp/hypr/"$HYPRLAND_INSTANCE_SIGNATURE"/.socket2.sock - | while read -r line; do
scripts/overview "$1"
done
fi