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 xbmc.bin)" ] then xscreensaver-command -deactivate fi sleep 60 done