summaryrefslogtreecommitdiff
path: root/.local/bin/mpva
diff options
context:
space:
mode:
Diffstat (limited to '.local/bin/mpva')
-rwxr-xr-x.local/bin/mpva11
1 files changed, 0 insertions, 11 deletions
diff --git a/.local/bin/mpva b/.local/bin/mpva
deleted file mode 100755
index 7224cf46..00000000
--- a/.local/bin/mpva
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-
-if [ $# -eq 0 ]; then
- # fzf has --read0, maybe useful
- find "$XDG_MUSIC_DIR" | fzf -m --print0 | xargs -0 mpv --af= --shuffle --loop-playlist=inf --video=no
-elif [ $# -eq 1 ]; then
- # use --loop-file for single file, better performance maybe
- mpv --af= --loop-file=inf --video=no "$1"
-else
- mpv --af= --shuffle --loop-playlist=inf --video=no "$@"
-fi