13 lines
251 B
Bash
Executable File
13 lines
251 B
Bash
Executable File
#!/bin/bash
|
|
|
|
audacious ./stereo_test.mp3 >/dev/null 2>&1 & disown
|
|
|
|
read -p "Funktioniert Sound? Audacios öffnet sich - (y/n): " answer
|
|
|
|
if [[ "$answer" == [Yy] ]]; then
|
|
return 0
|
|
elif [[ "$answer" == [Nn] ]]; then
|
|
return 1
|
|
else
|
|
return 1
|
|
fi |