dockerfiles/firefox/entrypoint.sh
crossminds b11b7d2fb3 Allow to pass command line arguments to dockerized firefox (#481)
* Allow to pass command line arguments to dockerized firefox

* Double quoted
2019-09-16 11:39:33 -07:00

8 lines
93 B
Bash
Executable File

#!/bin/bash
if [[ -e /dev/snd ]]; then
exec apulse firefox "$@"
else
exec firefox "$@"
fi