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
This commit is contained in:
parent
b47394fcb6
commit
b0d8723793
1 changed files with 7 additions and 0 deletions
|
@ -5,6 +5,13 @@
|
||||||
}: {
|
}: {
|
||||||
programs.alacritty.enable = true;
|
programs.alacritty.enable = true;
|
||||||
programs.alacritty.settings = {
|
programs.alacritty.settings = {
|
||||||
|
window = {
|
||||||
|
opacity = 0.83;
|
||||||
|
padding = {
|
||||||
|
x = 0;
|
||||||
|
y = 5;
|
||||||
|
};
|
||||||
|
};
|
||||||
colors = with config.colorScheme.colors; {
|
colors = with config.colorScheme.colors; {
|
||||||
bright = {
|
bright = {
|
||||||
black = "0x${base00}";
|
black = "0x${base00}";
|
||||||
|
|
Loading…
Reference in a new issue