aboutsummaryrefslogtreecommitdiff
path: root/bash_open
diff options
context:
space:
mode:
Diffstat (limited to 'bash_open')
-rw-r--r--bash_open10
1 files changed, 5 insertions, 5 deletions
diff --git a/bash_open b/bash_open
index 603d82f..7ad0591 100644
--- a/bash_open
+++ b/bash_open
@@ -5,15 +5,15 @@ open_func() {
case "$major/$minor" in
text/html)
- firefox "$file";;
+ firefox "$file" &;;
application/pdf)
- zathura "$file";;
+ zathura "$file" &;;
image/*)
- feh "$file";;
+ feh "$file" &;;
text/*)
- xterm -e vim "$file";;
+ xterm -e vim "$file" &;;
video/*)
- mplayer "$file";;
+ mpv "$file" &;;
*)
/usr/bin/xdg-open "$file";;
esac