aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2019-12-10 22:56:00 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2019-12-10 22:57:06 +0530
commit2e407d13258ebec3bf02c61365c9132297767ab8 (patch)
tree4849cdc6d7c9a54967c61d0f929be074704e698c
parentef09f427209eab13c65d8abe986d67bd9b38a33d (diff)
downloadnnn-2e407d13258ebec3bf02c61365c9132297767ab8.tar.gz
Add m4a files
-rwxr-xr-xplugins/boom6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/boom b/plugins/boom
index 40931b4..0ca9ab7 100755
--- a/plugins/boom
+++ b/plugins/boom
@@ -1,6 +1,6 @@
#!/usr/bin/env sh
-# Description: Play random music from current directory. Identifies MP3, FLAC, WEBM, WMA.
+# Description: Play random music from current directory. Identifies MP3, FLAC, M4A, WEBM, WMA.
# You may want to set GUIPLAYER.
#
# Shell: POSIX compliant
@@ -12,7 +12,7 @@ NUMTRACKS=100
if [ ! -z "$GUIPLAYER" ]; then
PLAYER="$GUIPLAYER"
- find . -type f \( -iname "*.mp3" -o -iname "*.flac" -o -iname "*.webm" -o -iname "*.wma" \) | sort -R | head -n $NUMTRACKS | xargs -d "\n" "$PLAYER" > /dev/null 2>&1 &
+ find . -type f \( -iname "*.mp3" -o -iname "*.flac" -o -iname "*.m4a" -o -iname "*.webm" -o -iname "*.wma" \) | sort -R | head -n $NUMTRACKS | xargs -d "\n" "$PLAYER" > /dev/null 2>&1 &
# detach the player
sleep 1
@@ -24,7 +24,7 @@ else
mocp -c
# add up to 100 random audio files
- find . -type f \( -iname "*.mp3" -o -iname "*.flac" -o -iname "*.webm" -o -iname "*.wma" \) | sort -R | head -n $NUMTRACKS | xargs -d "\n" mocp -a
+ find . -type f \( -iname "*.mp3" -o -iname "*.flac" -o -iname "*.m4a" -o -iname "*.webm" -o -iname "*.wma" \) | sort -R | head -n $NUMTRACKS | xargs -d "\n" mocp -a
# start playing
mocp -p