mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +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
|