Skip to content

Instantly share code, notes, and snippets.

@m13m
Forked from ngauthier/README.md
Last active August 29, 2015 14:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save m13m/ede068fa7c9ee37399ee to your computer and use it in GitHub Desktop.
Save m13m/ede068fa7c9ee37399ee to your computer and use it in GitHub Desktop.

I like Rdio and linux. Rdio works great in a browser except for one thing: keyboard shortcuts!!!

When coding, I like to be able to play/pause my music quickly, meaning I don't want to switch windows. I figured out a way to do this:

Google Chrome --app

First, I made a file in my ~/bin called rdio that runs:

google-chrome --app=http://rdio.com

This opens Rdio in its own window, and most importantly, as its own application (kind of).

xdotool

Next, I made a file in my ~/bin called rdio-play-pause. This runs:

xdotool key --window $(xdotool search --name Rdio | head -1) space

This looks up a window with the name "Rdio" and sends the "space" key to it, which is Rdio's keyboard shortcut for play/pause.

Window Manager Keyboard Shortcut

Last, I am on XFCE, so I opened up the settings manager, went to keyboard -> Application Shortcuts. Then I created a shortcut to my rdio-play-pause script bound to XF86AudioPlay which is my keyboard's play/pause media key.

Thanks

Thanks to @IAmAru for suggesting I look into window manager command line tools.

#!/bin/sh
google-chrome --app=http://rdio.com
#!/bin/sh
xdotool key --window $(xdotool search --name Rdio | head -1) space
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment