summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xopener10
1 files changed, 5 insertions, 5 deletions
diff --git a/opener b/opener
index bfb2bb5..d9160fb 100755
--- a/opener
+++ b/opener
@@ -1,8 +1,8 @@
#!/bin/sh
case "$1" in
- application/pdf) exec zathura "$2";;
- image/*) exec sxiv "$2";;
- text/html) exec ./viewhtml "$2" "";;
- text/*) exec less "$2";;
- *) echo $1 $2;;
+ application/pdf) exec zathura "$3";;
+ image/*) exec sxiv "$3";;
+ text/html) exec ./viewhtml "$3" "$2";;
+ text/*) exec less "$3";;
+ *) echo "\e[31m$1\e[0m $2 $3";;
esac