浏览代码

Fix plugin boom, make customizable

master
Arun Prakash Jana 6 年前
父节点
当前提交
86594a747f
找不到此签名对应的密钥 GPG 密钥 ID: A75979F35C080412
共有 1 个文件被更改,包括 4 次插入5 次删除
  1. +4
    -5
      plugins/boom

+ 4
- 5
plugins/boom 查看文件

@@ -8,16 +8,15 @@


#GUIPLAYER=smplayer #GUIPLAYER=smplayer


NUMTRACKS=100

if [ ! -z "$GUIPLAYER" ]; then if [ ! -z "$GUIPLAYER" ]; then
PLAYER="$GUIPLAYER" PLAYER="$GUIPLAYER"
find . -type f \( -iname "*.mp3" -o -iname "*.flac" -o -iname "*.webm" -o -iname "*.wma" \) | sort -R | head -n 100 | xargs -d "\n" "$PLAYER" > /dev/null 2>&1 &
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 &


# detach the player # detach the player
disown disown
else else
# exit MOC server
mocp -x

# start MOC server # start MOC server
mocp -S mocp -S


@@ -25,7 +24,7 @@ else
mocp -c mocp -c


# add up to 100 random audio files # 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 100 | xargs -d "\n" mocp -a
find . -type f \( -iname "*.mp3" -o -iname "*.flac" -o -iname "*.webm" -o -iname "*.wma" \) | sort -R | head -n $NUMTRACKS | xargs -d "\n" mocp -a


# start playing # start playing
mocp -p mocp -p


正在加载...
取消
保存