Skip to content

Instantly share code, notes, and snippets.

@borismacias
Last active January 10, 2019 02:14
Show Gist options
  • Save borismacias/8399fdeabdad8dd9f107837f06835d2d to your computer and use it in GitHub Desktop.
Save borismacias/8399fdeabdad8dd9f107837f06835d2d to your computer and use it in GitHub Desktop.
Snippet para la ansiedad de Canelita
require 'shellwords'
ROOT_PATH = '/Users/boris/Desktop/canelita'.freeze
sounds = Dir["#{ROOT_PATH}/sonidos/*"]
loop do
sound = Shellwords.shellescape sounds.sample
puts "PLAYING #{sound}"
`omxplayer #{sound}`
sleep(300)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment