Unified font size

This commit is contained in:
Filippo Berto 2021-08-24 10:28:07 +02:00
parent e17323dde8
commit 75d48026fe
5 changed files with 16 additions and 14 deletions

View file

@ -13,7 +13,7 @@ in
scrolling.history = 3000;
font = {
normal.family = pkgs.rice.font.monospace.name;
size = 9.0;
size = pkgs.rice.font.monospace.size;
};
background_opacity = pkgs.rice.opacity;
mouse = {

View file

@ -1,12 +1,8 @@
{ pkgs, ... }:
{
gtk = {
gtk = with pkgs.rice; {
enable = true;
font = {
package = pkgs.cantarell-fonts;
name = "Cantarell";
size = 9;
};
font = font.normal;
iconTheme = {
package = pkgs.qogir-icon-theme;
name = "Qogir-dark";

View file

@ -10,4 +10,5 @@
Install = { WantedBy = [ "graphical-session.target" ]; };
Service = { ExecStart = "${pkgs.keepassxc}/bin/keepassxc"; };
};}
};
}

View file

@ -61,9 +61,9 @@ let
bottom.size = 0;
};
font = [
"${pkgs.rice.font.monospace.name}:size=9;2"
"Material Design Icons:size=9;2"
"NotoEmoji Nerd Font Mono:size=9;0"
"${pkgs.rice.font.monospace.name}:size=${toString pkgs.rice.font.monospace.size};2"
"Material Design Icons:size=${toString pkgs.rice.font.monospace.size};2"
"NotoEmoji Nerd Font Mono:size=${toString pkgs.rice.font.monospace.size};0"
];
wm-restack = "bspwm";
};