From 4b073323dad7b6feceb5e4effb8b68405bc24c25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Wed, 25 May 2022 17:05:38 +0200 Subject: [PATCH] feat(alacritty): less opaque, better cursor --- configs/alacritty.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configs/alacritty.nix b/configs/alacritty.nix index 5c47dd3..2601ff6 100644 --- a/configs/alacritty.nix +++ b/configs/alacritty.nix @@ -6,7 +6,7 @@ }: let alacritty-cfg = theme: (pkgs.formats.yaml {}).generate "alacritty.yml" { - window.opacity = 0.9; + window.opacity = 0.95; font = { normal.family = "Monospace"; size = 6; @@ -34,6 +34,7 @@ colourPairs = lib.getAttrs colourNames theme; in { primary = {inherit (theme) background foreground;}; + cursor = {inherit (theme) cursor;}; normal = lib.mapAttrs (_: colour: colour.dark) colourPairs; bright = lib.mapAttrs (_: colour: colour.bright) colourPairs; };