Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
This commit is contained in:
Jess Frazelle
2018-10-04 19:42:31 -04:00
parent 963d37174d
commit 32817f0a44

View File

@@ -1,3 +1,7 @@
#!/bin/bash
[ -e /dev/snd ] && exec apulse firefox || exec firefox
if [[ -e /dev/snd ]]; then
exec apulse firefox
else
exec firefox
fi