diff options
| author | Danilo M. <danix@danix.xyz> | 2026-09-17 12:06:37 +0200 |
|---|---|---|
| committer | Danilo M. <danix@danix.xyz> | 2026-09-17 12:06:37 +0200 |
| commit | cfbd02e85f039a557cf6561b84b58097f70041d4 (patch) | |
| tree | 21cfca03e5f8bb5956f330aa6d6b8b48533d63b5 | |
| parent | 64482a7f4c11c430c4159954e05692b28f03f4f1 (diff) | |
| download | conky-theme-udt-cfbd02e85f039a557cf6561b84b58097f70041d4.tar.gz conky-theme-udt-cfbd02e85f039a557cf6561b84b58097f70041d4.zip | |
feat: expose the warning palette role
| -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 |
