1
1
Fork 0

gtk: force font-weight

Signed-off-by: Myned <dev@bjork.tech>
This commit is contained in:
Myned 2025-01-11 11:52:38 -06:00
parent 85bc980e12
commit 4cc5db838f
Signed by: Myned
GPG key ID: C7224454F7881A34

View file

@ -11,13 +11,19 @@ in {
config.home-manager.users.${config.custom.username} = mkIf cfg.enable { config.home-manager.users.${config.custom.username} = mkIf cfg.enable {
gtk = let gtk = let
css = readFile ./style.css; css = ''
* {
font-weight: ${config.custom.settings.fonts.weight};
}
${readFile ./style.css}
'';
in { in {
enable = true; enable = true;
font = with config.custom.settings.fonts; { font = with config.custom.settings.fonts; {
name = sans-serif; name = sans-serif;
size = 12; size = 14;
}; };
cursorTheme = with config.custom.settings.icons.cursor; { cursorTheme = with config.custom.settings.icons.cursor; {