From ce32967823903bf3ba95df71b24517cd27593974 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Mon, 17 May 2021 17:23:27 -0400 Subject: Install firefox on OpenBSD I feel like I'm using Windows when I open firefox... But it's so hard to get by without it :( --- home/.config/cwm/cwmrc | 1 + home/.local/bin/open | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) (limited to 'home') diff --git a/home/.config/cwm/cwmrc b/home/.config/cwm/cwmrc index 0f372e22..24d692a7 100644 --- a/home/.config/cwm/cwmrc +++ b/home/.config/cwm/cwmrc @@ -7,6 +7,7 @@ autogroup 0 clock,XTerm unbind-key all bind-key 4-n terminal +bind-key 4-t "firefox -new-tab about:blank" bind-key 4-Delete lock bind-key 4-Down window-lower bind-key 4-Up window-raise diff --git a/home/.local/bin/open b/home/.local/bin/open index 17cfb523..cc13d0a6 100755 --- a/home/.local/bin/open +++ b/home/.local/bin/open @@ -10,9 +10,9 @@ case "$1" in curl -LSs "$1" | imv - ;; (https://youtu.be/*|https://www.youtube.com/watch*|https://twitch.tv/*) - exec mpv "$1" >/dev/null 2>/dev/null + exec mpv "$1" >/dev/null 2>&1 ;; (*) - exec xterm -e w3m "$1" + exec firefox -new-tab "$1" >/dev/null 2>&1 ;; esac -- cgit 1.4.1