summaryrefslogtreecommitdiffstats
path: root/abs/core/linhes-scripts/stop_xss.sh
blob: 9d3772ee01367412c565f779d676b835f2cbd688 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

while [ 1=1 ];
do

    if [ "$(pidof chromium)" -o "$(pidof huludesktop)" -o "$(pidof xbmc.bin)"]
    then
    xscreensaver-command -deactivate
    fi
    sleep 60

done