mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +01:00
b11b7d2fb3
* Allow to pass command line arguments to dockerized firefox * Double quoted
8 lines
93 B
Bash
Executable File
8 lines
93 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ -e /dev/snd ]]; then
|
|
exec apulse firefox "$@"
|
|
else
|
|
exec firefox "$@"
|
|
fi
|