firefox/entrypoint.sh

8 lines
93 B
Bash
Executable File

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