diff options
author | Justine Smithies <justine@smithies.me.uk> | 2024-02-04 19:39:11 +0000 |
---|---|---|
committer | Justine Smithies <justine@smithies.me.uk> | 2024-02-04 19:39:11 +0000 |
commit | d6445964e32ba88fbcf6964c32bed5493fe0c3a8 (patch) | |
tree | e513fd78d881d382d3f55769f1ecc64686cd63d2 /.config | |
parent | 21d7a503c2c3cdb4e4b72e1e8ca1b2769a30dbc2 (diff) |
Added space before capacacity text on battery module
Diffstat (limited to '.config')
-rw-r--r-- | .config/yambar/config.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.config/yambar/config.yml b/.config/yambar/config.yml index fbd6cd5..12b6602 100644 --- a/.config/yambar/config.yml +++ b/.config/yambar/config.yml @@ -192,7 +192,7 @@ bar: - string: {text: , font: *nerdfont} - string: {text: , font: *nerdfont} - string: {text: , foreground: ffffffff, font: *nerdfont} - - string: {text: "{capacity}% {estimate}"} + - string: {text: " {capacity}% {estimate}"} content: map: conditions: @@ -202,10 +202,10 @@ bar: <<: *discharging state == full: - string: {text: , foreground: ffffffff, font: *nerdfont} - - string: {text: "{capacity}%"} + - string: {text: " {capacity}%"} state == "not charging": - string: {text: , foreground: ffffffff, font: *nerdfont} - - string: {text: "{capacity}%"} + - string: {text: " {capacity}%"} state == charging: - ramp: tag: capacity @@ -220,4 +220,4 @@ bar: - string: {text: , foreground: ffffffff, font: *nerdfont} - string: {text: , foreground: ffffffff, font: *nerdfont} - string: {text: , foreground: ffffffff, font: *nerdfont} - - string: {text: "{capacity}%"} + - string: {text: " {capacity}%"} |