I'm looking for a way to run a program when locking the screen in Fedora 15 linux. Basically I want to start running a motion detection program when the screen locks, or I manually hit Ctrl+Alt+L, but I don't know what commands are being run or where to alias my own intermediate step in. I assume it's "gnome-screensaver-command --lock" but am not sure how to go about this. Anybody know how, or a direction to start looking in?

Thanks

Edit, since link was in a comment: This is done with dbus-monitor and described here: http://live.gnome.org/GnomeScreensaver/FrequentlyAskedQuestions#Is_there_a_way_to_perform_actions_when_the_screensaver_activates_or_deactivates.3F_Or_when_the_session_becomes_idle.3F

link|improve this question

80% accept rate
I retagged this in hopes that someone more familiar with the Gnome 3 screensaver might happen by and give you a more directly useful answer… – BRPocock Dec 14 '11 at 18:53
feedback

1 Answer

up vote 1 down vote accepted

The dbus system advertises screen locking; monitor for ActiveChanged on org.gnome.ScreenSaver. (see http://people.gnome.org/~mccann/gnome-screensaver/docs/gnome-screensaver.html )

e.g. (word-wrapped for clarity)

    signal sender=:1.68 -> dest=(null destination) 
           serial=53 path=/org/gnome/ScreenSaver; 
           interface=org.gnome.ScreenSaver; member=ActiveChanged
        boolean true

Unfortunately, this will require writing more code than just a shell script, I'm afraid; although I'd be curious if you could ask dbus to call your program as a handler for that signal, somehow; otherwise, I suppose you'd just start a daemon process and listen for that signal to be broadcast…

link|improve this answer
Your solution is a lot nicer than me wiping out a program link with an alias, and the ActiveChanged member does fire on locking, but I'm not sure how to add a handler to dbus. I'll look into this though, thanks. – vityav Dec 14 '11 at 19:19
I don't think you can do that, anyway … gnome-screensaver-command just fires off a dbus signal, itself, I believe. – BRPocock Dec 14 '11 at 19:21
1  
I dug through the dbus interface and turns out they changed a lot between whats documented and gnome 3, but they provide a nice, easy perl script here: live.gnome.org/GnomeScreensaver/… – vityav Dec 15 '11 at 21:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.