wf-shell icon indicating copy to clipboard operation
wf-shell copied to clipboard

wf-shell.ini.example clock font style wronf examle format

Open mrfoggg opened this issue 8 months ago • 1 comments

clock font

clock_font = DejaVu Sans:style=Book 12

Incorrect font style setup format. Correctly this way clock_font = Adwaita Sans:style Heavy 16

or that way clock_font = Adwaita Sans Heavy 16 both work but the effect is different

mrfoggg avatar Jun 03 '25 16:06 mrfoggg

Hm, I'm not sure, but isn't font configurable through .css? If so, all the *_font options should probably be removed.

NamorNiradnug avatar Jun 03 '25 22:06 NamorNiradnug

The fonts were given a compatibility layer (aka regex) to apply some css rules to them as needed. You could make the file ~/.config/wf-shell/css/clock.css

.clock {
  font-weight: bold;
  font-size: 16px;
  font-family: Adwaita Sans
}

But from my tests the weight is being ignored.

trigg avatar Nov 14 '25 19:11 trigg