瀏覽代碼

mocplay: confirm working with selection

master
Arun Prakash Jana 6 年之前
父節點
當前提交
b5ed36bebe
沒有發現已知的金鑰在資料庫的簽署中 GPG 金鑰 ID: A75979F35C080412
共有 1 個檔案被更改,包括 8 行新增3 行删除
  1. +8
    -3
      plugins/mocplay

+ 8
- 3
plugins/mocplay 查看文件

@@ -20,7 +20,7 @@ SHUFFLE=0

mocp_add() {
if [ $SHUFFLE = 1 ]; then
if [ -s "$selection" ]; then
if [ "$resp" = "y" ]; then
arr=$(tr '\0' '\n' < "$selection")
elif [ -n "$1" ]; then
arr="$1"
@@ -44,7 +44,7 @@ mocp_add() {
done

else
if [ -s "$selection" ]; then
if [ "$resp" = "y" ]; then
xargs < "$selection" -0 mocp -a
else
mocp -a "$1"
@@ -56,6 +56,11 @@ if [ ! -s "$selection" ] && [ -z "$1" ]; then
exit
fi

if [ -s "$selection" ]; then
echo -n "Work with selection? Enter 'y' to confirm: "
read resp
fi

if [ -z "$ret" ]; then
# mocp not running
mocp -S
@@ -76,7 +81,7 @@ fi

# clear selection and play
mocp -c
mocp_add "$1"
mocp_add "$1" "$resp"
mocp -p

# uncomment the line below to show mocp interface after appending


Loading…
取消
儲存