diff options
author | Justine Smithies <justine@smithies.me.uk> | 2024-05-29 20:19:03 +0100 |
---|---|---|
committer | Justine Smithies <justine@smithies.me.uk> | 2024-05-29 20:19:03 +0100 |
commit | a54de7e35675db334578668a8b8b379b0dc7c35e (patch) | |
tree | 18e20c521e13548f1936ee1d8d19437172f4b5ad /.config | |
parent | 55cd594df00593d3ff72c0947fa608b7a9e362cd (diff) |
Fixed Yambar config for network module as was adding 'tag unknown not found'
Diffstat (limited to '.config')
-rw-r--r-- | .config/yambar/config.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.config/yambar/config.yml b/.config/yambar/config.yml index 6629489..c9bbf3c 100644 --- a/.config/yambar/config.yml +++ b/.config/yambar/config.yml @@ -166,7 +166,9 @@ bar: conditions: state == up: - string: { text: , font: *nerdfont, foreground: ffffff66 } - state == down || unknown: + state == down: + - string: { text: , font: *nerdfont, foreground: ffffffff } + state == unknown: - string: { text: , font: *nerdfont, foreground: ffffffff } - battery: name: BAT0 |