1
0
Fork 0
dotfiles/simpleDots/bin/startAltBrowser.sh

16 lines
512 B
Bash
Raw Permalink Normal View History

#!/bin/sh
###############################################################################
##
# Starts the correct browser
#
#
#
###############################################################################
test -x ~/.local/bin/startAltBrowser.sh && (~/.local/bin/startAltBrowser.sh $@) && exit 0
test -x /usr/bin/firefox && (/usr/bin/firefox $@ &) && exit 0
test -x /usr/bin/chromium && (/usr/bin/chromium --force-dark-mode $@ &) && exit 0
i3-nagbar -m "None of your favorite browsers were found :-("
exit 1