diff options
| -rw-r--r-- | conky.conf.in | 1 | ||||
| -rw-r--r-- | dashboard.lua | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/conky.conf.in b/conky.conf.in index 1eb99b4..9db8b0b 100644 --- a/conky.conf.in +++ b/conky.conf.in @@ -41,6 +41,7 @@ conky.config = { color5 = '@HIGHLIGHT@', color6 = '@OK@', color7 = '@CRITICAL@', + color8 = '@WARNING@', default_color = '@BODY@', default_outline_color = '@BODY_OUTLINE@', default_shade_color = '@BODY_SHADE@', diff --git a/dashboard.lua b/dashboard.lua index 2d1666f..7e85fd7 100644 --- a/dashboard.lua +++ b/dashboard.lua @@ -75,6 +75,7 @@ local function palette() highlight = hex(CFG.color5), ok = hex(CFG.color6), critical = hex(CFG.color7), + warning = hex(CFG.color8), body = hex(CFG.default_color), -- The card fill, from default_shade_color (@BODY_SHADE@, `mantle` in -- Macchiato). It must NOT reuse color3: that is the border, and filling and |
