diff --git a/share/theme/plain.sh b/share/theme/plain.sh index dfd5801..ef272b2 100644 --- a/share/theme/plain.sh +++ b/share/theme/plain.sh @@ -184,3 +184,7 @@ KBF_GROUP="%s" KBF_KEY="%s" # Format description KBF_DESC="%s" + +# Playlist title +# ============== +TITLE_PLYLST=" Playlist " diff --git a/src/main.sh b/src/main.sh index 05213de..5dc1362 100755 --- a/src/main.sh +++ b/src/main.sh @@ -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" \ diff --git a/src/sh/theme.sh b/src/sh/theme.sh index 40fd0f4..9beb4a9 100644 --- a/src/sh/theme.sh +++ b/src/sh/theme.sh @@ -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