blob: b204f145b4699e4642652293b63b255ab9e7f073 (
plain)
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
|
#!/bin/sh
#---------------------------------------------
# xdg-screensaver
#
# Utility script to control screensaver.
#
# Refer to the usage() function below for usage.
#
# Copyright 2006, Bryce Harrington <bryce@osdl.org>
#
# LICENSE:
#
#---------------------------------------------
manualpage()
{
cat << _MANUALPAGE
_MANUALPAGE
}
usage()
{
cat << _USAGE
_USAGE
}
#@xdg-utils-common@
# Check if we can use "mv -T"
if mv -T ... ... 2>&1 | grep '\.\.\.' > /dev/null ; then
# We can securely move files in /tmp with mv -T
DEBUG 1 "mv -T available"
MV="mv -T"
screensaver_file="/tmp/xdg-screensaver-$USER-"`echo $DISPLAY | sed 's/:/-/g'`
else
# No secure moves available, use home dir
DEBUG 1 "mv -T not available"
MV="mv"
screensaver_file="$HOME/.xdg-screensaver-"`echo $HOSTNAME-$DISPLAY | sed 's/:/-/g'`
fi
lockfile_command=`which lockfile 2> /dev/null`
lockfile()
{
if [ -n "$lockfile_command" ] ; then
$lockfile_command -1 -l 10 -s 3 "$screensaver_file".lock
else
# Poor man's attempt at doing a lockfile
# Be careful not to facilitate a symlink attack
local try
try=0
while ! ln -s "$screensaver_file".lock "$screensaver_file".lock 2> /dev/null;
do
sleep 1
try=$(($try+1))
if [ $try -eq 3 ] ; then
rm -f "$screensaver_file".lock || return # Can't remove lockfile
try=0
fi
done
fi
}
unlockfile()
{
rm -f "$screensaver_file".lock
}
perform_action()
{
# Always set the Xorg screensaver first
#screensaver_xset "$1"
#xset_err=$?
xset_err=0
result=1
case "$DE" in
kde)
screensaver_kde "$1"
;;
gnome)
screensaver_gnome "$1"
;;
xscreensaver)
screensaver_xscreensaver "$1"
;;
esac
}
cleanup_suspend()
{
lockfile
tmpfile=`mktemp`
grep -v "$window_id:" "$screensaver_file" > "$tmpfile" 2> /dev/null
$MV "$tmpfile" "$screensaver_file"
if [ ! -s "$screensaver_file" ] ; then
rm "$screensaver_file"
unlockfile
# $screensaver_file is empty, do resume
perform_action resume
else
unlockfile
fi
}
do_resume()
{
lockfile # Obtain lockfile
# Find the PID of the trackingprocess
xprop_pid=`grep "$window_id:" "$screensaver_file" 2> /dev/null | cut -d ':' -f 2`
unlockfile # Free lockfile
if [ -n "$xprop_pid" ] && ps -p "$xprop_pid" 2> /dev/null | grep xprop > /dev/null; then
# Kill the tracking process
kill -TERM $xprop_pid
fi
cleanup_suspend
}
XPROP=`which xprop 2> /dev/null`
check_window_id()
{
if [ -z "$XPROP" ]; then
DEBUG 3 "xprop not found"
return
fi
DEBUG 2 "Running $XPROP -id $window_id"
if $XPROP -id $window_id > /dev/null 2> /dev/null; then
DEBUG 3 Window $window_id exists
else
DEBUG 3 Window $window_id does not exist
exit_failure_operation_failed "Window $window_id does not exist"
fi
}
track_window()
{
if [ -z "$XPROP" ]; then
# Don't track window if we don't have xprop
return
fi
lockfile
tmpfile=`mktemp`
# Filter stale entries from the xdg-screensaver status file
# Return if $window_id is being tracked already
(
already_tracked=1
IFS_save="$IFS"
IFS=":"
while read wid pid; do
if ps -p "$pid" 2> /dev/null | grep xprop > /dev/null; then
echo "$wid:$pid"
if [ $wid = $window_id ] ; then
already_tracked=0
fi
fi
done
IFS="$IFS_save"
exit $already_tracked
) < $screensaver_file > $tmpfile
already_tracked=$?
if [ "$already_tracked" -eq "0" ] ; then
$MV "$tmpfile" "$screensaver_file"
# We are already tracking $window_id, don't do anything
unlockfile
return
fi
# Start tracking $window_id
$XPROP -id $window_id -spy > /dev/null &
xprop_pid=$!
# Add window_id and xprop_pid to the xdg-screensave status file
echo "$window_id:$xprop_pid" >> $tmpfile
$MV "$tmpfile" "$screensaver_file"
unlockfile
# Wait for xprop to edit, it means that the window disappeared
wait $xprop_pid
# Clean up the administration and resume the screensaver
cleanup_suspend
}
screensaver_xset()
{
TIMEOUT=`xset q | /bin/grep -A 2 ^Screen | /bin/grep timeout | awk '{print $2}'`
DPMS=`xset q | /bin/grep 'DPMS is' | awk '{print $3}'`
if [ "$DPMS" = "Enabled" ]; then
DPMS="+dpms"
else
DPMS="-dpms"
fi
case "$1" in
# New arg Window ID, create lockfile with $WINDOWID
suspend)
xset s off -dpms
;;
resume)
# Restores screensaver to its default settings
xset s default "$DPMS"
;;
activate)
# Turns the screensaver on right now
xset s activate
;;
reset)
# Turns the screensaver off right now
xset s reset
;;
status)
if [ ${TIMEOUT:0} -eq 0 ]; then
echo "disabled"
else
echo "enabled"
fi
;;
esac
return $?
}
screensaver_kde()
{
case "$1" in
suspend)
dcop kdesktop KScreensaverIface enable false > /dev/null
result=$?
;;
resume)
dcop kdesktop KScreensaverIface configure > /dev/null
result=$?
;;
activate)
dcop kdesktop KScreensaverIface save > /dev/null
result=$?
;;
lock)
dcop kdesktop KScreensaverIface lock > /dev/null
result=$?
;;
reset)
# Turns the screensaver off right now
dcop kdesktop KScreensaverIface quit > /dev/null
result=$?
;;
status)
status=`dcop kdesktop KScreensaverIface isEnabled`
result=$?
if [ x"$status" = "xtrue" ]; then
echo "enabled"
elif [ x"$status" = "xfalse" ]; then
echo "disabled"
else
echo "ERROR: kdesktop KScreensaverIface isEnabled returned '$status'" >&2
return 1
fi
;;
*)
echo "ERROR: Unknown command '$1'" >&2
return 1
;;
esac
}
screensaver_suspend_loop()
{
lockfile
tmpfile=`mktemp`
# Filter stale entries from the xdg-screensaver status file
cat "$screensaver_file" 2> /dev/null | (
IFS_save="$IFS"
IFS=":"
while read wid pid; do
if ps -p "$pid" 2> /dev/null | grep xprop > /dev/null; then
echo "$wid:$pid"
fi
done
IFS="$IFS_save"
) > $tmpfile
if [ -s "$tmpfile" ] ; then
# Suspend pending, don't do a thing
$MV "$tmpfile" "$screensaver_file"
unlockfile
return
fi
$MV "$tmpfile" "$screensaver_file"
unlockfile
(while [ -f "$screensaver_file" ]; do $*; sleep 59; done) > /dev/null 2> /dev/null &
}
screensaver_gnome()
{
# TODO
# There seems to be a DBUS interface for gnome-screensaver
# See http://lists.mplayerhq.hu/pipermail/mplayer-dev-eng/2006-April/042579.html and
# http://cvs.gnome.org/viewcvs/gnome-screensaver/src/gs-listener-dbus.c?rev=1.36&view=log
# A problem seems to be that Inhibit is tied to the lifetime of the DBUS appname and
# this can not be used from a script
case "$1" in
suspend)
screensaver_suspend_loop gnome-screensaver-command --poke
result=0
;;
resume)
# Automatic resume when $screensaver_file disappears
result=0
;;
activate)
gnome-screensaver-command --activate > /dev/null 2> /dev/null
result=$?
;;
lock)
gnome-screensaver-command --lock > /dev/null 2> /dev/null
result=$?
;;
reset)
# Turns the screensaver off right now
gnome-screensaver-command --deactivate > /dev/null 2> /dev/null
result=$?
;;
status)
result=0
if [ -f "$screensaver_file" ] ; then
echo "disabled"
elif gnome-screensaver-command --query > /dev/null 2> /dev/null; then
echo "enabled"
else
# Something is wrong
echo "disabled"
fi
;;
*)
echo "ERROR: Unknown command '$1" >&2
return 1
;;
esac
}
screensaver_xscreensaver()
{
case "$1" in
suspend)
screensaver_suspend_loop xscreensaver-command -deactivate
result=0
;;
resume)
# Automatic resume when $screensaver_file disappears
result=0
;;
activate)
xscreensaver-command -activate > /dev/null 2> /dev/null
result=$?
;;
lock)
xscreensaver-command -lock > /dev/null 2> /dev/null
result=$?
;;
reset)
# Turns the screensaver off right now
xscreensaver-command -deactivate > /dev/null 2> /dev/null
result=$?
;;
status)
result=0
if [ -f "$screensaver_file" ] ; then
echo "disabled"
else
echo "enabled"
fi
;;
*)
echo "ERROR: Unknown command '$1" >&2
return 1
;;
esac
}
[ x"$1" != x"" ] || exit_failure_syntax
action=
window_id=
case $1 in
suspend)
action="$1"
shift
if [ -z "$1" ] ; then
exit_failure_syntax "WindowID argument missing"
fi
window_id="$1"
check_window_id
;;
resume)
action="$1"
shift
if [ -z "$1" ] ; then
exit_failure_syntax "WindowID argument missing"
fi
window_id="$1"
check_window_id
;;
activate)
action="$1"
;;
lock)
action="$1"
;;
reset)
action="$1"
;;
status)
action="$1"
;;
*)
exit_failure_syntax "unknown command '$1'"
;;
esac
detectDE
# Consider "xscreensaver" a separate DE
xscreensaver-command -version > /dev/null 2> /dev/null && DE="xscreensaver"
if [ "$action" = "resume" ] ; then
do_resume
exit_success
fi
perform_action "$action"
if [ "$action" = "suspend" ] ; then
# Start tracking $window_id and resume the screensaver once it disappears
( track_window ) 2> /dev/null > /dev/null &
fi
if [ $result -eq 0 ]; then
exit_success
#elif [ $xset_err -eq 0 ]; then
# exit_success
else
exit_failure_operation_failed
fi
|