Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: How to make current playlist in different colour? (Read 2822 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

How to make current playlist in different colour?

I tried everything but couldn't do it  What I need to write in the field for titleformatting( fb2k pref.->display->columns ui->playlist switcher ) ? And could someone tell me which of the formatting tags are specially for this place(e.g. %size%)?
Thank you in advance.

How to make current playlist in different colour?

Reply #1
$set_style(back,$rgb(166,202,240),$rgb(10,36,106))

Is this the sort of thing you are looking for?
(first color is normal background, second color is selected background)

You can use it in:
File> Preferences> Display> Columns UI> Playlist view> "Columns" Tab> "Style" Subtab.

How to make current playlist in different colour?

Reply #2
Use this
Code: [Select]
$if(%is_playing%,$rgb(xxx,xxx,xxx)%title%,%title%)
with the rgb part is the color you want for playing playlist. Also remember to tick the "Use titleformatting for playlist title in panel" above the textbox.

There's a wiki page about this on columnUI official page but I can't find it now weird.

EDIT: Really can't find it even with google so here a list of string that I know/remember:
%is_playing%, %length%, %is_active%, %size%, %is_lock%, %lock_name%
Hope that help.

How to make current playlist in different colour?

Reply #3
thuan, thank you man this is what I wanted


 

How to make current playlist in different colour?

Reply #5
Thank you