gtk: force font-weight
Signed-off-by: Myned <dev@bjork.tech>
This commit is contained in:
parent
85bc980e12
commit
4cc5db838f
1 changed files with 8 additions and 2 deletions
|
@ -11,13 +11,19 @@ in {
|
|||
|
||||
config.home-manager.users.${config.custom.username} = mkIf cfg.enable {
|
||||
gtk = let
|
||||
css = readFile ./style.css;
|
||||
css = ''
|
||||
* {
|
||||
font-weight: ${config.custom.settings.fonts.weight};
|
||||
}
|
||||
|
||||
${readFile ./style.css}
|
||||
'';
|
||||
in {
|
||||
enable = true;
|
||||
|
||||
font = with config.custom.settings.fonts; {
|
||||
name = sans-serif;
|
||||
size = 12;
|
||||
size = 14;
|
||||
};
|
||||
|
||||
cursorTheme = with config.custom.settings.icons.cursor; {
|
||||
|
|
Loading…
Add table
Reference in a new issue