2020-04-12 12:45:29 +02:00
|
|
|
{ ... }: {
|
|
|
|
home-manager.users.adrielus.programs.alacritty = {
|
|
|
|
enable = true;
|
|
|
|
|
|
|
|
settings = {
|
|
|
|
window = {
|
2021-11-29 15:00:11 +01:00
|
|
|
decorations = "none";
|
|
|
|
|
2020-04-12 12:45:29 +02:00
|
|
|
padding = {
|
2021-11-29 15:00:11 +01:00
|
|
|
x = 8;
|
2020-04-12 12:45:29 +02:00
|
|
|
y = 8;
|
|
|
|
};
|
|
|
|
|
2021-11-29 15:00:11 +01:00
|
|
|
gtk_theme_variant = "light";
|
2020-04-12 12:45:29 +02:00
|
|
|
|
2021-11-29 15:00:11 +01:00
|
|
|
};
|
2020-04-12 12:45:29 +02:00
|
|
|
|
2020-04-12 14:09:13 +02:00
|
|
|
# transparent bg:)
|
2021-11-29 15:00:11 +01:00
|
|
|
background_opacity = 0.3;
|
|
|
|
fonts.normal.family = "Source Code Pro";
|
2020-04-12 14:09:13 +02:00
|
|
|
|
2020-04-12 12:45:29 +02:00
|
|
|
colors = {
|
|
|
|
cursor = {
|
2021-11-29 15:00:11 +01:00
|
|
|
text = "#c880b7";
|
|
|
|
cursor = "#fcf68d";
|
2020-04-12 12:45:29 +02:00
|
|
|
};
|
|
|
|
selection = {
|
|
|
|
text = "#b5b5b5";
|
|
|
|
background = "#18354f";
|
|
|
|
};
|
|
|
|
primary = {
|
2021-11-29 15:00:11 +01:00
|
|
|
background = "#f7fff7";
|
|
|
|
foreground = "#18354f";
|
2020-04-12 12:45:29 +02:00
|
|
|
};
|
|
|
|
normal = {
|
2021-11-29 15:00:11 +01:00
|
|
|
black = "#3d0a3b";
|
|
|
|
red = "#c880b7";
|
|
|
|
blue = "#6f38c7";
|
|
|
|
yellow = "#8de336";
|
|
|
|
green = "#2ec0f9";
|
|
|
|
magenta = "#fc90c3";
|
|
|
|
cyan = "#ff577e";
|
|
|
|
white = "#e2e8ef";
|
2020-04-12 12:45:29 +02:00
|
|
|
};
|
|
|
|
bright = {
|
2021-11-29 15:00:11 +01:00
|
|
|
black = "#5e105c";
|
|
|
|
red = "#ec9ded";
|
|
|
|
green = "#b726d4";
|
|
|
|
yellow = "#fff773";
|
|
|
|
blue = "#75d5fa";
|
|
|
|
magenta = "#ffb3d7";
|
|
|
|
cyan = "#ffcf66";
|
2020-04-12 12:45:29 +02:00
|
|
|
white = "#ffffff";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|