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

19 lines
597 B
Bash
Raw Permalink Normal View History

#!/bin/sh
###############################################################################
##
# Starts the correct browser in private-mode
#
#
#
###############################################################################
2023-12-25 15:48:01 +01:00
export MOZ_USE_XINPUT2=1
test -x ~/.local/bin/startAltBrowserPrivat.sh && (~/.local/bin/startAltBrowserPrivat.sh $@) && exit 0
test -x /usr/bin/firefox && (/usr/bin/firefox --private-window $@ &) && exit 0
test -x /usr/bin/chromium && (/usr/bin/chromium --force-dark-mode --incognito $@ &) && exit 0
i3-nagbar -m "None of your favorite browsers were found :-("
exit 1