Allow to pass command line arguments to dockerized firefox (#481)

* Allow to pass command line arguments to dockerized firefox

* Double quoted
This commit is contained in:
crossminds 2019-09-16 20:39:33 +02:00 committed by Jess Frazelle
parent 14c7ab9194
commit b11b7d2fb3

View file

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