2015-08-02 22:34:51 +02:00
|
|
|
#!/bin/bash -x
|
|
|
|
|
2015-08-08 10:32:03 +02:00
|
|
|
# wait for sonic-pi to start
|
2015-08-02 22:34:51 +02:00
|
|
|
sleep 20
|
2015-08-08 10:32:03 +02:00
|
|
|
|
|
|
|
# set the default audio output to be the headphone jack
|
2015-08-02 22:34:51 +02:00
|
|
|
amixer cset numid=3 1
|
2015-08-08 10:32:03 +02:00
|
|
|
|
|
|
|
# set audio volume to full
|
2015-08-02 22:34:51 +02:00
|
|
|
amixer sset PCM 100%
|
2015-08-08 10:32:03 +02:00
|
|
|
|
|
|
|
# play our tune
|
|
|
|
cat /home/pi/world-o-techno/world-o-techno.rb|sonic_pi
|