1
0
Fork 0
dotfiles2000/dotfiles/my-binaries/dot-bin/startBrowserPrivat.sh

16 lines
564 B
Bash
Raw Normal View History

2024-10-31 22:09:39 +01:00
#!/bin/sh
###############################################################################
##
# Starts the correct browser in private-mode
#
#
#
###############################################################################
test -x ~/.local/bin/startBrowserPrivat.sh && (~/.local/bin/startBrowserPrivat.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