-
-
Save digoribeiro/8ec21160a0078e62251c06b1df3b780c to your computer and use it in GitHub Desktop.
configure spotify for linux shortcut keys
This file contains hidden or 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
| #@see rynop.com for details | |
| sudo apt-get install xbindkeys | |
| ####now put the following in ~/.xbindkeysrc: | |
| #KeyboardPlay | |
| "dbus-send --print-reply --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.PlayPause" | |
| XF86AudioPlay | |
| #KeyboardStop | |
| "dbus-send --print-reply --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.Stop" | |
| XF86AudioStop | |
| #KeyboardPrev | |
| "dbus-send --print-reply --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.Prev" | |
| XF86AudioPrev | |
| #KeyboardNext | |
| "dbus-send --print-reply --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.Next" | |
| XF86AudioNext | |
| ##### Now run xbindkeys and put '/usr/bin/xbindkeys' in 'startup applications' for your user account |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment