From 2395a25adfaabb2d5e397a6ff11afd455b9d4561 Mon Sep 17 00:00:00 2001 From: Filippo Berto Date: Fri, 14 Apr 2023 11:45:20 +0200 Subject: [PATCH] Alacritty: fix font scale --- hm_modules/alacritty.nix | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/hm_modules/alacritty.nix b/hm_modules/alacritty.nix index 96ee39d..e04b0c0 100644 --- a/hm_modules/alacritty.nix +++ b/hm_modules/alacritty.nix @@ -33,18 +33,17 @@ in scrolling.history = 3000; font = { normal.family = pkgs.rice.font.monospace.name; - size = pkgs.rice.font.monospace.size / 1.5; # Font size is broken + size = pkgs.rice.font.monospace.size / 1.2; # Font size is broken }; window.opacity = pkgs.rice.opacity; mouse = { # hide_when_typing = true; hints.modifiers = "Control"; }; - colors = with pkgs.rice; - strPalette // { - selection.text = "CellForeground"; - search.matches.foreground = "CellForeground"; - }; + colors = strPalette // { + selection.text = "CellForeground"; + search.matches.foreground = "CellForeground"; + }; }; }; }