mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-27 04:16:45 +01:00
32817f0a44
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
8 lines
83 B
Bash
Executable File
8 lines
83 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ -e /dev/snd ]]; then
|
|
exec apulse firefox
|
|
else
|
|
exec firefox
|
|
fi
|