1
0
mirror of https://github.com/jessfraz/dockerfiles.git synced 2025-04-24 04:35:39 +02:00
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
No known key found for this signature in database
GPG Key ID: 18F3685C0022BFF3

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