summary refs log tree commit diff
path: root/home
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2021-02-09 18:12:16 -0500
committerJune McEnroe <june@causal.agency>2021-02-09 18:12:16 -0500
commit1b14f2ae98fe8c95d65ba2a5ef738bb85e39eca4 (patch)
tree992ffa1782b404e707d21feb908e023e445b9b1a /home
parentDisable mouse mode in xterm (diff)
downloadsrc-1b14f2ae98fe8c95d65ba2a5ef738bb85e39eca4.tar.gz
src-1b14f2ae98fe8c95d65ba2a5ef738bb85e39eca4.zip
Use w3m to open other URLs
Diffstat (limited to 'home')
-rwxr-xr-xhome/.local/bin/open5
1 files changed, 1 insertions, 4 deletions
diff --git a/home/.local/bin/open b/home/.local/bin/open
index 256a62e2..a1f57a1a 100755
--- a/home/.local/bin/open
+++ b/home/.local/bin/open
@@ -9,10 +9,7 @@ case "$1" in
 	(*.gif|*.jpeg|*.jpg|*.png)
 		curl -LSs "$1" | imv -
 		;;
-	(*.txt)
-		exec xterm -hold -e sh -c 'curl -LSs "$1" | $PAGER' - "$1"
-		;;
 	(*)
-		printf '%s' "$1" | pbcopy
+		exec xterm -e w3m "$1"
 		;;
 esac