This commit is contained in:
Barak Michener 2014-01-22 13:49:33 -05:00
parent f7f01cbf7b
commit ec8785adbd
3 changed files with 14 additions and 0 deletions

11
bin/run_browser Executable file
View file

@ -0,0 +1,11 @@
#!/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