blob: b73be85b616fff1d4fbf850bca4271cf48ec7f12 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
 | #!/bin/sh
while [ 1=1 ];
do
    if [ "$(pidof google-chrome)" -o "$(pidof huludesktop)" -o "$(pidof kodi.bin)" -o "$(pidof plexhometheater)" ]
    then
    xscreensaver-command -deactivate
    fi
    sleep 60
done
 |