1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 18:21:07 +01:00

feat(alacritty): less opaque, better cursor

This commit is contained in:
2022-05-25 17:05:38 +02:00
parent bf35fb1020
commit 4b073323da

View File

@@ -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;
};