Audio + Drives test

added stereo sound and drives check
This commit is contained in:
2026-04-28 16:09:06 +02:00
parent e10d589177
commit fa512fd896
4 changed files with 52 additions and 36 deletions

13
speaker.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/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