diff options
| author | 2020-02-23 15:23:39 +0530 | |
|---|---|---|
| committer | 2020-02-23 15:29:21 +0530 | |
| commit | d4423467553a3adad831d241912af0a009a165aa (patch) | |
| tree | 1a64cdaf98be617a67747b0e214964b567866026 | |
| parent | 78372b203a023ba8715b81e61fe19608627c916c (diff) | |
| download | nnn-d4423467553a3adad831d241912af0a009a165aa.tar.gz | |
Update mocplay to understand opener calls
| -rwxr-xr-x | plugins/mocplay | 4 | ||||
| -rwxr-xr-x | plugins/mp3conv | 2 | ||||
| -rwxr-xr-x | plugins/nuke | 4 |
3 files changed, 6 insertions, 4 deletions
diff --git a/plugins/mocplay b/plugins/mocplay index 211a3db..30818b2 100755 --- a/plugins/mocplay +++ b/plugins/mocplay @@ -57,7 +57,9 @@ if [ ! -s "$selection" ] && [ -z "$1" ]; then exit fi -if [ -s "$selection" ]; then +if [ "$2" = "opener" ]; then + : +elif [ -s "$selection" ]; then printf "Work with selection? Enter 'y' to confirm: " read -r resp fi diff --git a/plugins/mp3conv b/plugins/mp3conv index 1c00909..b582cbc 100755 --- a/plugins/mp3conv +++ b/plugins/mp3conv @@ -15,7 +15,7 @@ handle_multimedia() { case "${mime}" in audio/* | video/*) - ffmpeg -i "${file}" -vn -codec:a libmp3lame -q:a 2 "${outdir}"/"${file%.*}.mp3" + ffmpeg -i "${file}" -vn -codec:a libmp3lame -q:a 2 "${outdir}/${file%.*}.mp3" ;; *) ;; diff --git a/plugins/nuke b/plugins/nuke index 9487780..604777b 100755 --- a/plugins/nuke +++ b/plugins/nuke @@ -99,8 +99,8 @@ handle_pdf() { } handle_audio() { - if which mocp >/dev/null 2>&1; then - mocplay "${FPATH}" >/dev/null 2>&1 + if which mocplay >/dev/null 2>&1; then + mocplay "${FPATH}" "opener" >/dev/null 2>&1 exit 0 elif which mpv >/dev/null 2>&1; then mpv "${FPATH}" >/dev/null 2>&1 & |