aboutsummaryrefslogtreecommitdiff
path: root/bin/open
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2022-11-25 19:32:06 -0300
committerEuAndreh <eu@euandre.org>2022-11-25 19:32:06 -0300
commit7203cc028c6168b5876c234d21ce2f0aaea32ab2 (patch)
tree32c6af7d365332510cff0694b46869eee8e1d438 /bin/open
parentetc/guix/system.scm: Add "brightness" group and include myself in it (diff)
downloaddotfiles-7203cc028c6168b5876c234d21ce2f0aaea32ab2.tar.gz
dotfiles-7203cc028c6168b5876c234d21ce2f0aaea32ab2.tar.xz
bin/open: Use VLC over mpv; remove nohup
Diffstat (limited to 'bin/open')
-rwxr-xr-xbin/open4
1 files changed, 2 insertions, 2 deletions
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"