mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-04-03 10:50:42 +02:00
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
|