12 lines
202 B
Bash
12 lines
202 B
Bash
#!/bin/bash
|
|
|
|
# Setup the environment
|
|
cd ~/Documents/Projects/soundboard
|
|
source venv/bin/activate
|
|
|
|
# Init the audio devices
|
|
bash audio_setup.bash
|
|
|
|
# Start the soundboard application
|
|
python soundboard.py
|