💾 Archived View for dots.omarpolo.com › bin › browser.gmi captured on 2023-09-28 at 15:42:59. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2022-04-28)
-=-=-=-=-=-=-
This is my default browser. It launces the connect program depending on what is currently running:
#!/bin/sh if pgrep firefox >/dev/null 2>&1; then exec firefox "$1" fi if pgrep iridium >/dev/null 2>&1; then exec iridium "$1" fi
with a sane deafult
exec firefox "$1"