diff options
| -rw-r--r-- | config.lua | 1 | ||||
| -rw-r--r-- | osd.lua | 4 |
2 files changed, 5 insertions, 0 deletions
@@ -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', @@ -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 |
