In the i3 window manager you have this status bar. The configuration to enable the bar and tell it which file to load for it is in the ~/.i3/config
file. This points to /etc/i3status.conf
which contains the following to match the font color I use in my terminal emulator:
general {
colors = true
color_good = "#00A5FF" #some neon blue
color_degraded = "#006298"
color_bad = "#FF0000"
output_format = i3bar
interval = 5
}
If I enable a status element which doesn't work in my case - for instance ipv6 - it accordingly displays in red. But why are the rest of the statuses all appearing in white and not in blue like I specified? Isn't color_good the default color?