-
-
Save Oshuma/30491 to your computer and use it in GitHub Desktop.
This file contains 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
#!/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