Blame


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