Skip to content

Instantly share code, notes, and snippets.

@albsen
Forked from drslump/mediakeys.py
Created February 2, 2013 06:47
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 albsen/4696329 to your computer and use it in GitHub Desktop.
Save albsen/4696329 to your computer and use it in GitHub Desktop.
#!/usr/bin/python
import subprocess
# PyObjC-related imports
from AppKit import NSApplication, NSSystemDefined
from PyObjCTools import AppHelper
KEY_UP = 11
class KeySocketApp(NSApplication):
repeated = False
def sendEvent_(self, event):
if event.type() is NSSystemDefined and event.subtype() is 8:
data = event.data1()
keyCode = (data & 0xFFFF0000) >> 16
keyFlags = (data & 0x0000FFFF)
keyState = (keyFlags & 0xFF00) >> 8
keyRepeat = keyFlags & 0x1
if keyRepeat and keyState is not KEY_UP:
if keyCode == 20:
self.repeated = True
print "prev"
subprocess.call(['cmus-remote', '-k', '-10'])
elif keyCode == 19:
self.repeated = True
print "forward"
subprocess.call(['cmus-remote', '-k', '+10'])
if keyState is KEY_UP:
if self.repeated:
self.repeated = False
elif keyCode == 20:
print "PREV"
subprocess.call(['cmus-remote', '-r'])
elif keyCode == 16:
print "PLAY"
subprocess.call(['cmus-remote', '-u'])
elif keyCode == 19:
print "FORWARD"
subprocess.call(['cmus-remote', '-n'])
if __name__ == '__main__':
app = KeySocketApp.sharedApplication()
AppHelper.runEventLoop()
@albsen
Copy link
Author

albsen commented Feb 2, 2013

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment