From 4041549aafb64057629e8f13d1876c44ae5fe9c8 Mon Sep 17 00:00:00 2001 From: David Runge Date: Fri, 28 Nov 2014 14:40:09 +0100 Subject: adjust_dpms: Merging script based programs into the same Array as the others. Adding -x to pidof check. --- bin/adjust_dpms | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) (limited to 'bin') diff --git a/bin/adjust_dpms b/bin/adjust_dpms index 0391dba..c8e8a0f 100755 --- a/bin/adjust_dpms +++ b/bin/adjust_dpms @@ -18,10 +18,10 @@ else exit 1 fi -# loop all pre-compiled programs and check for running instances +# loop all programs and check for running instances for i in "${programs[@]}" do - pid=$(pidof $i) + pid=$(pidof -x $i) re='^[0-9]+$' if [[ $pid =~ $re ]]; then echo "$i running ($pid)" @@ -29,17 +29,6 @@ do fi done -# loop all python2 run programs and check for running instances -for i in "${python2[@]}" -do - pid=$(pidof python2 $i) - re='^[0-9]+$' - if [[ $pid =~ $re ]]; then - echo "$i running ($pid)" - blankoff=1 - fi -done - # if valuable programs are running, don't use screen blanking if [ $blankoff -gt 0 ]; then echo "Some program requires screensaver to be off." -- cgit v1.2.3-54-g00ecf