dotfiles/bin/run_browser
2014-01-22 13:49:33 -05:00

11 lines
182 B
Bash
Executable file

#!/bin/bash
if [ -n "`which firefox`" ]; then
firefox
elif [ -n "`which iceweasel`" ]; then
iceweasel
elif [ -n "`which google-chrome`" ]; then
google-chrome
else
exit 1
fi