From 7203cc028c6168b5876c234d21ce2f0aaea32ab2 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Fri, 25 Nov 2022 19:32:06 -0300 Subject: bin/open: Use VLC over mpv; remove nohup --- bin/open | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin/open') diff --git a/bin/open b/bin/open index f2fdf9d..a57e13e 100755 --- a/bin/open +++ b/bin/open @@ -69,7 +69,7 @@ for f in "$@"; do vlc "$f" 1>&2 2>/dev/null & ;; *.flac|*.ogg|*.mkv|*.avi|*.mp4) - nohup mpv "$f" 1>&2 2>/dev/null & + vlc "$f" 1>&2 2>/dev/null & ;; http*|*.svg|*.html) "$BROWSER" "$f" @@ -81,7 +81,7 @@ for f in "$@"; do telescope "$f" ;; *.pdf|*.djvu|*.ps|*.epub) - nohup zathura "$f" 1>&2 2>/dev/null & + zathura "$f" 1>&2 2>/dev/null & ;; *.txt) less "$f" -- cgit v1.2.3