Sway : Use font name from config.
This commit is contained in:
parent
37c804c53b
commit
569a1e4859
|
@ -1,5 +1,8 @@
|
||||||
{ ... }: {
|
{ config, ... }: let
|
||||||
|
fontName = config.style.font.sansSerif.name;
|
||||||
|
# fontSize = toString config.style.font.size.desktop;
|
||||||
|
in {
|
||||||
text = ''
|
text = ''
|
||||||
font "SF Pro Display Medium 0.001"
|
font "${fontName} Medium 0.001"
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue