fixed queue and movements

This commit is contained in:
2025-08-28 16:14:56 +02:00
parent 4a8f42cdd5
commit 1d0ae4b5b2
4 changed files with 29 additions and 22 deletions

View File

@@ -10,7 +10,7 @@ KEYS_FILTER_SECONDARY="${KEYS_FILTER_SECONDARY:-"alt-2"}"
KEYS_SWITCH_ARTIST_ALBUM="${KEYS_SWITCH_ARTIST_ALBUM:-"tab"}"
KEYS_SWITCH_LOCAL_REMOTE="${KEYS_SWITCH_LOCAL_REMOTE:-"ctrl-/"}"
KEYS_PLAY="${KEYS_PLAY:-"enter"}"
KEYS_QUEUE="${KEYS_QUEUE:-"alt-enter"}"
KEYS_QUEUE="${KEYS_QUEUE:-"ctrl-alt-m"}"
KEYS_TOGGLE_PLAY_PAUSE="${KEYS_TOGGLE_PLAY_PAUSE:-"space"}"
KEYS_PLAY_NEXT="${KEYS_PLAY_NEXT:-"l,right"}"
KEYS_PLAY_PREV="${KEYS_PLAY_PREV:-"h,left"}"

View File

@@ -227,7 +227,6 @@ list_playlist() {
-v format_current="$FORMAT_CURRENT" \
-v current_id="$current_id" \
"$AWK_RECORDINGS" |
sort -k1,1n -k2,2g |
cut -d "$(printf '\t')" -f 2- |
column -t -s "$(printf '\t')" -R 5 |
sed 's| \+\([0-9a-f-]\+\) \+\([0-9a-f-]\+\):\(.*$\)$|\t\1\t\2\t\3|'

View File

@@ -11,8 +11,6 @@ __mpv_command_with_args2() {
}
__mpv_get() {
foo "__mpv_get argument=$1"
foo "__mpv_get answer=$(__mpv_command_with_arg "expand-text" "$1" | $JQ -C)"
__mpv_command_with_arg "expand-text" "$1" | $JQ -r '.data'
}
@@ -37,16 +35,15 @@ mpv_start() {
mpv_play_list() {
t=$(mktemp)
cat >"$t"
foo "$(cat "$t")"
__mpv_command_with_arg "loadlist" "$t"
rm -f "$t"
}
mpv_queue_list() {
foo "mpv_queue_list"
t=$(mktemp)
cat >"$t"
foo "$(cat "$t")"
__mpv_command_with_arg "loadlist" "$t" "append-play"
__mpv_command_with_args2 "loadlist" "$t" "append-play"
rm -f "$t"
}