scripts/bash/usr-local-bin/firefox

13 lines
356 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
2022-04-19 20:32:18 +02:00
# I always want to see the profile manager, whether it's my first run or
# not and I probably have to micromanage wayland enabling everywhere.
# I cannot use the Flatpak as it doesn't support smartcards.
set -x
export MOZ_ENABLE_WAYLAND=1
2022-04-19 20:32:18 +02:00
#flatpak run org.mozilla.firefox --ProfileManager $@
/usr/bin/firefox --ProfileManager
set +x