diff options
author | EuAndreh <eu@euandre.org> | 2022-11-25 19:32:06 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-11-25 19:32:06 -0300 |
commit | 7203cc028c6168b5876c234d21ce2f0aaea32ab2 (patch) | |
tree | 32c6af7d365332510cff0694b46869eee8e1d438 /bin/open | |
parent | etc/guix/system.scm: Add "brightness" group and include myself in it (diff) | |
download | dotfiles-7203cc028c6168b5876c234d21ce2f0aaea32ab2.tar.gz dotfiles-7203cc028c6168b5876c234d21ce2f0aaea32ab2.tar.xz |
bin/open: Use VLC over mpv; remove nohup
Diffstat (limited to 'bin/open')
-rwxr-xr-x | bin/open | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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" |