Stop music playback when I lock the screen

4

1

Is it possible to run xmms2 stop when I lock the screen with Ctrl+Alt+L?

Aaron Digulla

Posted 2011-01-11T08:17:50.207

Reputation: 6 035

Answers

6

Should be.

The desktop-agnostic way is:

  • install xbindkeys
  • create a script that runs your "xmms" command plus "xscreensaver -l" or "kdescreensaver --lock"
  • create a ~/.xbindkeysrc
  • make xbindkeys run at startup

Assuming your script is in /usr/local/bin/lockandstop, ~/.xbindkeysrc should contain:

"/usr/local/bin/lockandstop"
Control + Alt + l

or perhaps

"/usr/local/bin/lockandstop"
Mod4 + l

depending on what xmodmap prints.

But maybe the KDE Control Panel offers an easier way under the keyboard shortcuts section.

Mikel

Posted 2011-01-11T08:17:50.207

Reputation: 7 890

Sounds like a good solution. I just can't find kdescreensaver. Is that the correct command for KDE 4.5? – Aaron Digulla – 2011-01-12T11:28:50.787

Found a solution via DBus: http://tips4linux.com/lock-your-kde-screen-from-the-command-line/

– Aaron Digulla – 2011-01-12T11:34:54.213