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 {
|
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; {
|
||||||
|
|
Loading…
Add table
Reference in a new issue