The i3 FAQ has migrated to https://github.com/i3/i3/discussions. All content here is read-only.
Ask Your Question
0

i3status: different colours for indiviual monitors?

asked 2015-06-02 19:56:38 +0000

bradmont gravatar image

My i3status bar is a long line of numbers that aren't immediately meaningful. Is it possible to make certain things different colours (eg, make the time/date blue) to make it easier to find the info I want at a glance?

edit retag flag offensive close merge delete

1 answer

Sort by ยป oldest newest most voted
0

answered 2015-06-03 03:04:38 +0000

i3convert gravatar image

It is possible. The i3bar protocol descriptions explains how to do this in detail.

Without going into details, the input to i3bar has to be encoded in the JSON format. To change the color of a specific entry, you have to add the color attributed. For instance, in the following example, the date would be red and the time would be green:

...
{ "full_text": "Jun 2, 2015", "color": "#ff0000"},
{ "full_text": "19:59", "color": "#00ff00"},
...
edit flag offensive delete link more

Question Tools

Stats

Asked: 2015-06-02 19:56:38 +0000

Seen: 107 times

Last updated: Jun 03