Created
November 5, 2011 15:55
-
-
Save siyo/1341691 to your computer and use it in GitHub Desktop.
now playing / earthquake.gem plugin
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
# -*- coding: utf-8 -*- | |
# OS X only | |
# rbosa : http://rubygems.org/gems/rubyosa19 | |
# | |
require 'kconv' | |
require 'rbosa' | |
Earthquake.init do | |
command :nowplaying do | |
t = OSA.app('iTunes').current_track | |
input "▶ %s - %s / %s" % [t.artist, t.name, t.album].map(&:toutf8) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment