From 2bf050635194cd6b35abcbf0a7dbde2bcf9c7f40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=84min=20Baumeler?= Date: Fri, 10 Oct 2025 11:01:43 +0200 Subject: [PATCH] bugfix: right-align duration in playlist view --- src/sh/theme.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sh/theme.sh b/src/sh/theme.sh index 9beb4a9..0a889b4 100644 --- a/src/sh/theme.sh +++ b/src/sh/theme.sh @@ -192,7 +192,7 @@ if [ ! "${THEME_LOADED:-}" ]; then # <> string Track duration PLYLST_FMT="${PLYLST_FMT:-"<>\t<>\t<<artist>>\t<<duration>>"}" PLYLST_FMT_CNT=$(($(printf "$PLYLST_FMT" | tr -cd '\t' | wc -c) + 1)) - PLYLST_FMT_RIGHTALIGN="${PLYLST_FMT_RIGHTALIGN:-"1"}" + PLYLST_FMT_RIGHTALIGN="${PLYLST_FMT_RIGHTALIGN:-"1,4"}" PLYLST_FMT_PLAYING_YES="${PLYLST_FMT_PLAYING_YES:-"👉"}" PLYLST_FMT_PLAYING_NO="${PLYLST_FMT_PLAYING_NO:-""}" PLYLST_FMT_TITLE="${PLYLST_FMT_TITLE:-"${CTITLE}%s${OFF}"}"