aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbin/adjust_dpms15
1 files changed, 2 insertions, 13 deletions
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."