summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config.lua1
-rw-r--r--osd.lua4
2 files changed, 5 insertions, 0 deletions
diff --git a/config.lua b/config.lua
index 1186b6b..a74d2ff 100644
--- a/config.lua
+++ b/config.lua
@@ -20,6 +20,7 @@ config.colours = {
search_hl_empty = '778800',
search_path = '666666',
search_path_empty = '444444',
+ icon_sorted = '4488cc',
icon_playing = '3366ff',
icon_favourite = 'ff00ff',
icon_active = 'ff9900',
diff --git a/osd.lua b/osd.lua
index e7bb9eb..e96cdd0 100644
--- a/osd.lua
+++ b/osd.lua
@@ -86,6 +86,10 @@ function mt:menu_title(menu)
str = str:gsub('<num_total>', #menu.search_options)
end
+ if menu.sorted then
+ str = colours.icon_sorted .. '⇅ ' .. col .. str
+ end
+
return col .. ' » ' .. str
end