summary refs log tree commit diff
path: root/home
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2021-05-17 17:23:27 -0400
committerJune McEnroe <june@causal.agency>2021-05-17 17:23:59 -0400
commitce32967823903bf3ba95df71b24517cd27593974 (patch)
tree81c22ad2cb75edf07e19fdcadd748e1f820d38e3 /home
parentAdd All the Birds in the Sky (diff)
downloadsrc-ce32967823903bf3ba95df71b24517cd27593974.tar.gz
src-ce32967823903bf3ba95df71b24517cd27593974.zip
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 :(
Diffstat (limited to 'home')
-rw-r--r--home/.config/cwm/cwmrc1
-rwxr-xr-xhome/.local/bin/open4
2 files changed, 3 insertions, 2 deletions
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