diff options
| author | Danilo M. <danix@danix.xyz> | 2026-09-17 10:04:09 +0200 |
|---|---|---|
| committer | Danilo M. <danix@danix.xyz> | 2026-09-17 10:04:09 +0200 |
| commit | c9ff9b2f5434ff09b02a3ab33eada2d8721d242f (patch) | |
| tree | 7ed259f7ea48c1c22d4c740cdad1dc12d6b030e4 /widgets | |
| parent | 182f36b81e408569ec20d109ec558d2432403264 (diff) | |
| download | conky-theme-udt-c9ff9b2f5434ff09b02a3ab33eada2d8721d242f.tar.gz conky-theme-udt-c9ff9b2f5434ff09b02a3ab33eada2d8721d242f.zip | |
feat: give the clock its own font
Installs Oswald (OFL-1.1, from googlefonts/OswaldFont) under
~/.fonts/o/Oswald with its license, and points the clock numerals at it
for the squared look the rounded Noto Sans Black did not have.
Per-widget fonts needed no new machinery: card.font() already takes any
family string, so FONT_* are shared defaults rather than a restriction.
FONT_CLOCK joins them, and the weather card keeps FONT_HEAVY, so the two
no longer have to agree.
Cairo still cannot ask for a weight above bold, so a heavier cut is
selected by family name as FONT_HEAVY already did. Worth knowing that
fontconfig substitutes a default for a family it does not recognise,
which is indistinguishable from the font not applying; fc-match tells
you which happened.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Diffstat (limited to 'widgets')
| -rw-r--r-- | widgets/clock.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/clock.lua b/widgets/clock.lua index c3e9712..b7c80d9 100644 --- a/widgets/clock.lua +++ b/widgets/clock.lua @@ -33,7 +33,7 @@ function M.draw(cr, rect, colors) local avail = (bottom - date_band) - inner.y local size = math.min(avail * 0.46, inner.w * 0.95) - card.font(cr, card.FONT_HEAVY, size, false) + card.font(cr, card.FONT_CLOCK, size, true) card.rgba(cr, colors.body) -- Baselines. Cairo's y is the baseline, so the first sits one cap-height |
