Blob


1 # browser
3 This is my default browser. It launces the connect program depending on
4 what is currently running:
6 #!/bin/sh
8 if pgrep firefox >/dev/null 2>&1; then
9 exec firefox "$1"
10 fi
12 if pgrep iridium >/dev/null 2>&1; then
13 exec iridium "$1"
14 fi
16 with a sane deafult
18 exec firefox "$1"