Files
csr_setup/speaker.sh
lucas_csr fa512fd896 Audio + Drives test
added stereo sound and drives check
2026-04-28 16:09:06 +02:00

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