This commit is contained in:
Riley Apeldoorn 2023-06-15 17:22:53 +02:00 committed by Riley Apeldoorn
parent 588bc378a2
commit cbfd55b79c
4 changed files with 18 additions and 2 deletions

View file

@ -72,6 +72,21 @@ in with lib; {
terminal = "kitty --single-instance"; terminal = "kitty --single-instance";
bars = []; bars = [];
gaps = {
inner = 4;
outer = 2;
};
colors = {
focused = rec {
text = "#ffffff";
border = "#7c56c4";
background = border;
childBorder = border;
indicator = border;
};
};
# Directional keys # Directional keys
modifier = mod; modifier = mod;
fonts = { fonts = {

View file

@ -11,6 +11,7 @@ let theme = config.theme; in {
scrollback_lines = 5000000; scrollback_lines = 5000000;
background = "#${theme.background.minor}"; background = "#${theme.background.minor}";
bold_font = "Fira Code Medium"; bold_font = "Fira Code Medium";
window_padding_width = 2;
}; };
font = { font = {

View file

@ -133,7 +133,7 @@ in {
} }
window#waybar { window#waybar {
background-color: rgba(0, 0, 0, 0.7); background-color: rgba(0, 0, 0, 0.45);
} }
#battery, #battery,

View file

@ -38,7 +38,7 @@
programs.helix = { programs.helix = {
enable = true; enable = true;
settings = { settings = {
theme = "github_dark_dimmed"; theme = "monokai_pro_spectrum";
}; };
}; };