Skip to content

Instantly share code, notes, and snippets.

@xoebus
Created April 11, 2011 12:14
Show Gist options
  • Save xoebus/913414 to your computer and use it in GitHub Desktop.
Save xoebus/913414 to your computer and use it in GitHub Desktop.
Detect if youtube is playing...
def flash_running?
`ps aux`.split("\n").find { |process| process.include? "Flash" }.match(/\w+\s*\d+\s*([\d.]+)\s*.*/)[1].to_i > 4
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment