configuratble playlist title

This commit is contained in:
2025-10-08 17:16:47 +02:00
parent dcc50fa9f2
commit e1aaf14814
3 changed files with 10 additions and 1 deletions

View File

@@ -184,3 +184,7 @@ KBF_GROUP="%s"
KBF_KEY="%s"
# Format description
KBF_DESC="%s"
# Playlist title
# ==============
TITLE_PLYLST=" Playlist "

View File

@@ -601,7 +601,7 @@ while true; do
--reverse \
--no-sort \
--border=double \
--border-label="╢ Playlist ╟" \
--border-label="$TITLE_PLYLST" \
--no-input \
--margin="2%,10%" \
--bind="$KEYS_DOWN,$KEYS_N_DOWN:down" \

View File

@@ -387,5 +387,10 @@ if [ ! "${THEME_LOADED:-}" ]; then
KBF_DESC="${KBF_DESC:-"${CKB}%s${OFF}"}"
export KBF_GROUP KBF_KEY KBF_DESC
# Playlist title
# ==============
TITLE_PLYLST="${TITLE_PLYLST:-" 🎶 ${CARTIST}Playlist${OFF} "}"
export TITLE_PLYLST
export THEME_LOADED=1
fi