From b0d8723793f80b5f91f63b005ad843d544d4dd35 Mon Sep 17 00:00:00 2001 From: GHOSCHT <31184695+GHOSCHT@users.noreply.github.com> Date: Wed, 27 Dec 2023 22:51:17 +0100 Subject: [PATCH] Fix alacritty window config opacity wasn't registeres, because it wasn't inside the window object. added y padding to push prompt a bit downwards --- home/features/desktop/common/alacritty.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/home/features/desktop/common/alacritty.nix b/home/features/desktop/common/alacritty.nix index c90d8f3..5e09cf0 100644 --- a/home/features/desktop/common/alacritty.nix +++ b/home/features/desktop/common/alacritty.nix @@ -5,6 +5,13 @@ }: { programs.alacritty.enable = true; programs.alacritty.settings = { + window = { + opacity = 0.83; + padding = { + x = 0; + y = 5; + }; + }; colors = with config.colorScheme.colors; { bright = { black = "0x${base00}";