forked from Kidlike/lightsOn
-
Notifications
You must be signed in to change notification settings - Fork 5
/
lightsOn.sh
executable file
·556 lines (497 loc) · 19.9 KB
/
lightsOn.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
#!/bin/bash
# lightsOn.sh
# Original version by iye.cba at gmail com
# url: https://github.com/iye/lightsOn
#
# Compilation version by Yegor Bayev
# url: https://github.com/kodx/lightsOn
#
# Contributors:
# Dylan Smith (https://github.com/dyskette/lightsOn)
# Andrew West (https://github.com/namtabmai/lightsOn)
#
# This script is licensed under GNU GPL version 2.0 or above
# Description: Bash script that prevents the screensaver and display power
# management (DPMS) to be activated when you are watching Flash or HTML5 Videos.
#
# It can detect mpv, mplayer, minitube, and VLC when they are fullscreen too.
# Also, screensaver can be prevented when certain specified programs are running.
# Optionally delay the screensaver when specific outputs are connected.
# HOW TO USE: Start the script with the number of seconds you want the checks
# for fullscreen to be done. Example:
#
# "./lightsOn.sh 120 &" will Check every 120 seconds if any of the supported
# applications are fullscreen and delay screensaver and Power Management if so.
# You want the number of seconds to be ~10 seconds less than the time it takes
# your screensaver or Power Management to activate. If you don't pass an
# argument, the checks are done every X seconds. Where X is calculated based on
# your system sleep time, with a minimum of $default_sleep_delay.
# An optional array variable exists here to add the names of programs that will
# delay the screensaver if they're running. This can be useful if you want to
# maintain a view of the program from a distance, like a music playlist.
# If you use this feature, make sure you use the name of the binary of the
# program (which may exist, for instance, in /usr/bin).
# VERSION=v0.1
# DEBUG=0 for no output
# DEBUG=1 for sleep prints
# DEBUG=2 for everything
DEBUG=0
# this is actually the minimum allowed dynamic delay.
# Also the default (if everything else fails)
default_sleep_delay=50
# Modify these variables if you want this script to detect if MPV, Mplayer,
# VLC, Minitube, Totem or a web browser Flash/HTML5 Video.
mplayer_detection=1
mpv_detection=1
vlc_detection=1
totem_detection=1
firefox_flash_detection=1
firefox_html5_detection=1
chromium_flash_detection=1
chromium_html5_detection=1
chromium_pepper_flash_detection=1
chrome_pepper_flash_detection=1
chrome_html5_detection=1
opera_flash_detection=1
opera_html5_detection=1
yandexBrowser_html5_flash_detection=1
epiphany_html5_detection=1
webkit_flash_detection=1
minitube_detection=1
# Names of programs which, when running, you wish to delay the screensaver.
# For example ('ardour2' 'gmpc').
delay_progs=()
# Display outputs to check, display screensaver when they are connected.
# Run xrandr to show current monitor config.
output_detection_control=0
output_detection=('HDMI-0')
# DPMS settings in seconds, 600 seconds = 10 minutes.
# If you don't want to change DMPS settings, modify DPMS_Control to 0.
DPMS_Control=1
DPMS_StandbyTime=600
DPMS_SuspendTime=600
DPMS_OffTime=600
# X11 Screen Saver Extension settings in seconds, 600 seconds = 10 minutes.
# If you don't want to change these settings, modify X11ScreenSaver_Control to 0.
X11ScreenSaver_Control=1
X11ScreenSaver_Timeout=600
# YOU SHOULD NOT NEED TO MODIFY ANYTHING BELOW THIS LINE
gsettings_present=$(if [ -x $(which gsettings) ]; then echo 1; else echo 0; fi)
xdg_screensaver_present=$(if [ -x $(which xdg-screensaver) ]; then echo 1; else echo 0; fi)
log() {
if [ $DEBUG -eq 2 ]; then
echo $@
elif [ $DEBUG -eq 1 ]; then
if [ "$(echo $@ | grep -c 'sleeping for')" == "1" ]; then
echo $@
fi
fi
}
# Setting DPMS.
if [ $DPMS_Control == 1 ]; then
log "Setting DPMS to Standby: $DPMS_StandbyTime, Suspend: $DPMS_SuspendTime, Off: $DPMS_OffTime"
xset dpms $DPMS_StandbyTime $DPMS_SuspendTime $DPMS_OffTime
fi
# Setting X11 Scrensaver Extension.
if [ $X11ScreenSaver_Control == 1 ]; then
log "Setting X11 Scrensaver Extension to Timeout: $X11ScreenSaver_Timeout"
xset s $X11ScreenSaver_Timeout
fi
# Enumerate all the attached screens.
displays=""
while read id
do
displays="$displays $id"
done < <(xvinfo | sed -n 's/^screen #\([0-9]\+\)$/\1/p')
# Detect screensaver been used.
if [ "$(pidof -s xscreensaver)" ]; then
screensaver=xscreensaver
log "xscreensaver detected"
elif [ "$(pidof -s kscreensaver)" ]; then
screensaver=kscreensaver
log "kscreensaver detected"
elif [ "$(pidof -s xautolock)" ]; then
screensaver=xautolock
log "xautolock detected"
elif [ $(pgrep -cf "(gnome-screensaver|/usr/bin/gnome-screensaver)") -ge 1 ]; then
screensaver=gnome-screensaver
log "gnome-screensaver detected"
elif [ "$(pidof -s cinnamon-screen)" ]; then
screensaver=cinnamon-screensaver
log "cinnamon-screensaver detected"
else
screensaver=None
log "No screensaver detected"
fi
checkDelayProgs()
{
log "checkDelayProgs()"
for prog in "${delay_progs[@]}"; do
if [ $(pgrep -lfc "$prog") -ge 1 ]; then
log "checkDelayProgs(): Delaying the screensaver because a program on the delay list, \"$prog\", is running..."
delayScreensaver
break
fi
done
}
checkFullscreen()
{
log "checkFullscreen()"
# Loop through every display looking for a fullscreen window.
for display in $displays
do
# Get id of active window and clean output
activ_win_id=$(DISPLAY=:${display} xprop -root _NET_CLIENT_LIST_STACKING | sed 's/.*\, //')
# Previously used _NET_ACTIVE_WINDOW, but it didn't work with some flash
# players (eg. Twitch.tv) in firefox. Using sed because id lengths can vary.
# Skip invalid window ids (commented as I could not reproduce a case
# where invalid id was returned, plus if is invalid isActivWinFullscreen
# will fail anyway).
# if [ "$activ_win_id" = "0x0" ]; then
# continue
# fi
# Check if active window is in fullscreen or above state.
if [[ -n $activ_win_id ]]; then
isActivWinFullscreen=$(DISPLAY=:${display} xprop -id $activ_win_id | grep -c _NET_WM_STATE_FULLSCREEN)
# Above state is used in some window managers instead of fullscreen.
isActivWinAbove=$(DISPLAY=:${display} xprop -id $activ_win_id | grep -c _NET_WM_STATE_ABOVE)
log "checkFullscreen(): Display: $display isFullScreen=$isActivWinFullscreen"
log "checkFullscreen(): Display: $display isAbove=$isActivWinAbove"
if [[ "$isActivWinFullscreen" -ge 1 || "$isActivWinAbove" -ge 1 ]]; then
log "checkFullscreen(): Fullscreen detected"
isAppRunning
var=$?
if [[ $var -eq 1 ]]; then
delayScreensaver
return
fi
# If no Fullscreen active => set dpms on.
else
log "checkFullscreen(): NO fullscreen detected"
xset dpms
# Turn on X11 Screensaver if necessary.
X11ScreensaverStatus=$(xset q | grep timeout | sed "s/cycle.*$//" | tr -cd [:digit:])
if [ $X11ScreensaverStatus -eq 0 ]; then
log "checkFullscreen(): Enabling X11 Screensaver Extension"
xset s on
fi
fi
fi
done
}
# Check if active window is matched with user settings.
# TODO only window name in the variable activ_win_title, not whole line.
# Then change IFs to detect more specifically the apps "<vlc>" and if process name exist.
isAppRunning()
{
log "isAppRunning()"
# Get title of active window.
activ_win_title=$(xprop -id $activ_win_id | grep "WM_CLASS(STRING)")
# Check if user want to detect Flash fullscreen on Firefox.
if [ $firefox_flash_detection == 1 ]; then
if [[ "$activ_win_title" = *unknown* || "$activ_win_title" = *plugin-container* ]]; then
# Check if plugin-container process is running.
if [ "$(pidof -s plugin-container)" ]; then
log "isAppRunning(): firefox flash fullscreen detected"
return 1
fi
fi
fi
# Check if user want to detect HTML5 fullscreen on Firefox.
if [ $firefox_html5_detection == 1 ]; then
if [[ "$activ_win_title" = *Firefox* || "$activ_win_title" = *Iceweasel* ]]; then
# Check if Firefox process is actually running.
# firefox_process=$(pgrep -c "(firefox|/usr/bin/firefox|iceweasel|/usr/bin/iceweasel)")
if [ "$(pidof -s firefox iceweasel)" ]; then
log "isAppRunning(): firefox html5 fullscreen detected"
return 1
fi
fi
fi
# Check if user want to detect Flash fullscreen on Chromium.
if [ $chromium_flash_detection == 1 ]; then
if [[ "$activ_win_title" = *exe* || "$activ_win_title" = *hromium* ]]; then
# Check if Chromium Flash process is running.
flash_process=$(pgrep -lfc ".*chromium.*flashp.*")
if [[ $flash_process -ge 1 ]]; then
log "isAppRunning(): chromium flash fullscreen detected"
return 1
fi
fi
fi
# Check if user want to detect HTML5 fullscreen on Chromium.
if [ $chromium_html5_detection == 1 ]; then
if [[ "$activ_win_title" == *hromium* ]]; then
# Check if Chromium process is running.
if [[ $(pgrep -c "chromium") -ge 1 ]]; then
log "isAppRunning(): chromium html5 fullscreen detected"
return 1
fi
fi
fi
# Check if user want to detect HTML5 fullscreen on Yandex browser.
if [ $yandexBrowser_html5_flash_detection == 1 ]; then
if [[ "$activ_win_title" == *andex-browser* ]]; then
# Check if Yandex browser process is running.
if [[ $(pgrep -c "yandex_browser") -ge 1 ]]; then
log "isAppRunning(): Yandex browser fullscreen detected"
return 1
fi
fi
fi
# Check if user want to detect Flash fullscreen on Chromium.
if [ $chromium_pepper_flash_detection == 1 ]; then
if [[ "$activ_win_title" = *hromium* ]]; then
# Check if Chromium pepper Flash process is running.
chromium_process=$(pgrep -lfc "chromium(|-browser) --type=ppapi ")
if [[ $chromium_process -ge 1 ]]; then
log "isAppRunning(): chromium pepper flash fullscreen detected"
return 1
fi
fi
fi
# Check if user want to detect Flash fullscreen on Chrome.
if [ $chrome_pepper_flash_detection == 1 ]; then
if [[ "$activ_win_title" = *oogle-chrome* ]]; then
# Check if Chrome pepper Flash process is running.
chrome_process=$(pgrep -lfc "(c|C)hrome --type=ppapi ")
if [[ $chrome_process -ge 1 ]]; then
log "isAppRunning(): chrome flash fullscreen detected"
return 1
fi
fi
fi
# Check if user want to detect HTML5 fullscreen on Chrome.
if [ $chrome_html5_detection == 1 ]; then
if [[ "$activ_win_title" = *oogle-chrome* ]]; then
# Check if Chrome process is running.
# chrome_process=`pgrep -lfc "(c|C)hrome --type=gpu-process "
chrome_process=$(pgrep -lfc "(c|C)hrome")
if [[ $chrome_process -ge 1 ]]; then
log "isAppRunning(): chrome html5 fullscreen detected"
return 1
fi
fi
fi
# Check if user want to detect Flash fullscreen on Opera.
if [ $opera_flash_detection == 1 ]; then
if [[ "$activ_win_title" = *operapluginwrapper* ]]; then
# Check if Opera flash process is running.
flash_process=$(pgrep -lfc operapluginwrapper-native)
if [[ $flash_process -ge 1 ]]; then
log "isAppRunning(): opera flash fullscreen detected"
return 1
fi
fi
fi
# Check if user want to detect HTML5 fullscreen on Opera.
if [ $opera_html5_detection == 1 ]; then
if [[ "$activ_win_title" = *opera* ]]; then
# Check if Opera process is running.
if [ "$(pidof -s opera)" ]; then
log "isAppRunning(): opera html5 fullscreen detected"
return 1
fi
fi
fi
# Check if user want to detect HTML5 fullscreen on Epiphany.
if [ $epiphany_html5_detection == 1 ]; then
if [[ "$activ_win_title" = *epiphany* ]]; then
# Check if Epiphany process is running.
if [[ "$(pidof -s epiphany)" ]]; then
log "isAppRunning(): epiphany html5 fullscreen detected"
return 1
fi
fi
fi
# Check if user want to detect Flash fullscreen on WebKit.
if [ $webkit_flash_detection == 1 ]; then
if [[ "$activ_win_title" = *WebKitPluginProcess* ]]; then
# Check if WebKit Flash process is running.
flash_process=$(pgrep -lfc ".*WebKitPluginProcess.*flashp.*")
if [[ $flash_process -ge 1 ]]; then
log "isAppRunning(): webkit flash fullscreen detected"
return 1
fi
fi
fi
# Check if user want to detect MPlayer fullscreen.
if [ $mplayer_detection == 1 ]; then
if [[ "$activ_win_title" = *mplayer* || "$activ_win_title" = *MPlayer* ]]; then
# Check if MPlayer is running.
if [ "$(pidof -s mplayer)" ]; then
log "isAppRunning(): mplayer fullscreen detected"
return 1
fi
fi
fi
# Check if user want to detect Totem fullscreen.
if [ $totem_detection == 1 ]; then
if [[ "$activ_win_title" = *totem* ]]; then
# Check if Totem is running.
if [ "$(pidof -s totem)" ]; then
log "isAppRunning(): totem fullscreen detected"
return 1
fi
fi
fi
# Check if user want to detect MPV fullscreen.
if [ $mpv_detection == 1 ]; then
if [[ "$activ_win_title" = *mpv* ]]; then
# Check if MPV is running.
if [ "$(pidof -s mpv)" ]; then
log "isAppRunning(): mpv fullscreen detected"
return 1
fi
fi
fi
# Check if user want to detect VLC fullscreen.
if [ $vlc_detection == 1 ]; then
if [[ "$activ_win_title" = *vlc* ]]; then
# Check if VLC is running.
if [ "$(pidof -s vlc)" ]; then
log "isAppRunning(): vlc fullscreen detected"
return 1
fi
fi
fi
# Check if user want to detect Minitube fullscreen.
if [ $minitube_detection == 1 ]; then
if [[ "$activ_win_title" = *minitube* ]]; then
# Check if Minitube is running.
if [ "$(pidof -s minitube)" ]; then
log "isAppRunning(): minitube fullscreen detected"
return 1
fi
fi
fi
return 0
}
delayScreensaver()
{
# Reset inactivity time counter so screensaver is not started.
if [ "$screensaver" == "xscreensaver" ]; then
log "delayScreensaver(): delaying xscreensaver..."
xscreensaver-command -deactivate > /dev/null
elif [ "$screensaver" == "kscreensaver" ]; then
log "delayScreensaver(): delaying kscreensaver..."
qdbus org.freedesktop.ScreenSaver /ScreenSaver SimulateUserActivity > /dev/null
elif [ "$screensaver" == "xautolock" ]; then
log "delayScreensaver(): delaying xautolock..."
xautolock -disable
xautolock -enable
elif [ "$screensaver" == "gnome-screensaver" ]; then
log "delayScreensaver(): delaying gnome-screensaver..."
dbus-send --session --dest=org.gnome.ScreenSaver --type=method_call /org/gnome/ScreenSaver org.gnome.ScreenSaver.SimulateUserActivity >/dev/null 2>&1
elif [ "$screensaver" == "cinnamon-screensaver" ]; then
log "delayScreensaver(): delaying cinnamon-screensaver..."
dbus-send --session --dest=org.cinnamon.ScreenSaver --type=method_call /org/cinnamon/ScreenSaver org.cinnamon.ScreenSaver.SimulateUserActivity >/dev/null 2>&1
else
if [ $xdg_screensaver_present == 1 ]; then
log "delayScreensaver(): trying to delay with xdg-screensaver..."
xdg-screensaver reset
fi
# Wrong way to simulate activity, this will interfere your work.
# if [ -f /usr/bin/xdotool ]; then
# log "delayScreensaver(): trying to delay with xdotool..."
# xdotool key ctrl
# fi
fi
# Check if DPMS is on. If it is, deactivate. If it is not, do nothing.
dpmsStatus=$(xset -q | grep -c 'DPMS is Enabled')
if [ $dpmsStatus == 1 ]; then
xset -dpms
# moved to checkFullscreen().
#xset dpms
fi
# Turn off X11 Screensaver if necessary.
X11ScreensaverStatus=$(xset q | grep timeout | sed "s/cycle.*$//" | tr -cd [:digit:])
if [ $X11ScreensaverStatus -ge 1 ]; then
log "delayScreensaver(): turning X11 Screensaver Extension off"
xset s off
fi
# Reset gnome session idle timer.
if [[ $gsettings_present == 1 && $(gsettings get org.gnome.desktop.session idle-delay 2>/dev/null) ]]; then
sessionIdleDelay=$(gsettings get org.gnome.desktop.session idle-delay 2>/dev/null | sed "s/^.* //")
if [[ $sessionIdleDelay -ge 1 ]]; then
log "delayScreensaver(): resetting gnome session..."
gsettings set org.gnome.desktop.session idle-delay 0 2>/dev/null
gsettings set org.gnome.desktop.session idle-delay $sessionIdleDelay 2>/dev/null
fi
fi
}
checkOutputs()
{
if [ $output_detection_control == 0 ]; then
return
fi
declare -A connected_outputs
while read line
do
declare output
IFS="=" read -a info <<< "$line"
if [[ "${info[0]}" = "output" ]]; then
output=${info[1]}
elif [[ "${info[0]}" = "connected" && "${info[1]}" = "connected" ]]; then
connected_outputs["${output}"]="connected"
fi
done < <(xrandr | sed -rn "s/^([^ ]+)[ ]+((dis)?connected)[ ]+(primary)?[ ]*([0-9]+x[0-9]+\+[0-9]+\+[0-9]+)?[ ]*.+$/output=\1\nconnected=\2\nignore=\3\nprimary=\4\nresolution=\5/p")
for output in $output_detection
do
if [[ ${connected_outputs["$output"]} = "connected" ]]; then
log "checkOutputs(): Delaying because of output"
delayScreensaver
return
fi
done
}
_sleep()
{
if [ $dynamicDelay -eq 0 ]; then
log "sleeping for $delay"
sleep $delay
else
if [ -f /sys/class/power_supply/AC/online ]; then
if [ $gsettings_present == 1 ]; then
if [ "$(cat /sys/class/power_supply/AC/online)" == "1" ]; then
system_sleep_delay=$(gsettings get org.gnome.settings-daemon.plugins.power sleep-display-ac 2>/dev/null)
else
system_sleep_delay=$(gsettings get org.gnome.settings-daemon.plugins.power sleep-display-battery 2>/dev/null)
fi
fi
fi
if [ "$(echo $system_sleep_delay | egrep -c "^[0-9]+$")" == "1" ]; then
if [ $system_sleep_delay -le $(($default_sleep_delay+5)) ]; then
sleep_delay=$default_sleep_delay
else
sleep_delay=$(($system_sleep_delay-5))
fi
else
sleep_delay=$default_sleep_delay
fi
log "sleeping for $sleep_delay (system idle timeout is $system_sleep_delay)"
sleep $sleep_delay
fi
}
delay=$1
dynamicDelay=0
# If argument empty, use dynamic delay.
if [ -z "$1" ]; then
dynamicDelay=1
log "No delay specified, dynamicDelay=1"
fi
# If argument is not integer quit.
if [[ $1 = *[^0-9]* ]]; then
echo "The Argument \"$1\" is not valid, not an integer"
echo "Please use the time in seconds you want the checks to repeat."
echo "You want it to be ~10 seconds less than the time it takes your screensaver or DPMS to activate"
exit 1
fi
while true
do
checkDelayProgs
checkFullscreen
checkOutputs
_sleep $delay
done
exit 0