Skip to content

Instantly share code, notes, and snippets.

@Oshuma
Forked from sunny/README
Created November 30, 2008 17:56
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 Oshuma/30491 to your computer and use it in GitHub Desktop.
Save Oshuma/30491 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
# Small app to control your Itunes via HTTP.
#
# Usage: `$ ruby itunes.rb`, then visit `http://localhost:4567`
# Requires sinatra: `$ sudo gem install sinatra`
require 'rubygems'
require 'sinatra'
get '/do' do
%x(osascript -e 'tell app "iTunes" to #{params[:command]}');
redirect '/'
end
get '/' do
@title = "Itunes #{%x{hostname}}"
haml :index
end
get '/stylesheet.css' do
content_type 'text/css', :charset => 'utf-8'
sass :stylesheet
end
use_in_file_templates!
__END__
@@ index
!!!
%html
%head
%title= @title
%meta{'http-equiv' => 'Content-Type', :content => 'text/html; charset=utf-8'}
%link{:rel => 'stylesheet', :href => '/stylesheet.css', :type => 'text/css'}
%body
%h1
= @title
%p
%a{:href => '/do?command=playpause', :title => "Play/Pause"} ▸
%a{:href => '/do?command=previous track', :title => "Previous"} ←
%a{:href => '/do?command=next track', :title => "Next"} →
%a{:href => '/do?command=set sound volume to sound volume - 5', :title => "Quieter"} ♪
%a{:href => '/do?command=set sound volume to sound volume %2B 5', :title => "Louder"} ♫
@@ stylesheet
body
padding: 0 5em
margin: 0
background: white
color: #333
font: 1.5em Helvetica, sans-serif
a
color: inherit
text-decoration: none
padding: .2em .3em
background: #ccc
color: white
-moz-border-radius: .2em
-webkit-border-radius: .2em
&:hover
background: #999
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment