Ruby and Mac scripting (rubyosa)
Check out this: "RubyOSA: The End of AppleScript?" http://www.clarkware.com/cgi/blosxom/2006/10/24#RubyOSA
which links to: "Rake Shame" http://codefluency.com/2006/10/23/rake-shame
and from which I scrawled song.rb:
song | pbcopy ... complete with Unicode escapes that no one likes, apparently...
and this with some inevitability leads to:
which links to: "Rake Shame" http://codefluency.com/2006/10/23/rake-shame
and from which I scrawled song.rb:
require '~/Work/rubyosa/osa.bundle' require '~/Work/rubyosa/rbosa.rb' itunes = OSA.app('itunes') track = itunes.current_track p track.artist + " - " + track.nameWith which and a dash of alias song="ruby ~/Work/song.rb" I now have a song command for posting to LJ:
song | pbcopy ... complete with Unicode escapes that no one likes, apparently...
and this with some inevitability leads to:
tunes = OSA.app('itunes') ducktroller = OSA.app('adium').adium_controller ducktroller.my_status_message= tunes.current_track.artist + " - " + tunes.current_track.name.. which I'll shortly thrown in cron..