Created
October 8, 2012 15:02
-
-
Save rduplain/3852987 to your computer and use it in GitHub Desktop.
Watch xscreensaver lock/unlock events and act on them.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Watch xscreensaver and react to status changes. | |
# | |
# Replaced my previous perl-based recipe with this: | |
# http://semicomplete.googlecode.com/svn/tools/xscreensaver-watch.sh | |
# | |
# Include somewhere in X session startup with: | |
# | |
# xscreensaver-watch & | |
lock() { | |
# Log this somewhere with `date` instead of just echoing. | |
echo `uname -n` screen is now blank | |
# Do other things here, like stop music playback & mute speakers. | |
} | |
unlock() { | |
# Log this somewhere with `date` instead of just echoing. | |
echo `uname -n` screen is now unblank | |
# Do other things here, like resume music playback & unmute speakers. | |
} | |
xscreensaver-command -watch | while read a; do | |
echo "$a" | grep -q '^LOCK' && lock | |
echo "$a" | grep -q '^UNBLANK' && unlock | |
done |
sick!!! I was looking for this all day. Now I can use i3lock to substitute xscreensaver's crusty login screen
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
On my raspberry, lock occurs with '^BLANK' keyword.
Now my touchscreen goes really to sleep.
Thanks