2022-01-18 14:11:43 +00:00
|
|
|
{ pkgs, ... }: {
|
2022-01-18 14:16:27 +00:00
|
|
|
gtk.enable = true;
|
2022-01-18 14:11:43 +00:00
|
|
|
gtk.iconTheme.package = pkgs.numix-icon-theme;
|
2022-01-18 14:12:03 +00:00
|
|
|
gtk.iconTheme.name = "Numix Dark";
|
2022-01-18 14:15:23 +00:00
|
|
|
gtk.theme.package = pkgs.libsForQt5.breeze-gtk;
|
|
|
|
gtk.theme.name = "Breeze Dark";
|
2022-01-19 08:54:36 +00:00
|
|
|
|
|
|
|
# Paraiso (dark) by Chris Kempson
|
|
|
|
# Alacritty colors
|
2022-01-19 08:59:45 +00:00
|
|
|
programs.alacritty = {
|
2022-01-19 08:57:17 +00:00
|
|
|
enable = true;
|
2022-01-19 08:59:45 +00:00
|
|
|
settings = {
|
|
|
|
colors = {
|
|
|
|
# Default Colors
|
|
|
|
primary = {
|
|
|
|
background = "0x2f1e2e";
|
|
|
|
foreground = "0xa39e9b";
|
|
|
|
};
|
2022-01-19 08:54:36 +00:00
|
|
|
|
2022-01-19 08:59:45 +00:00
|
|
|
# Normal Colors
|
|
|
|
normal = {
|
|
|
|
black = "0x2f1e2e";
|
|
|
|
red = "0xef6155";
|
|
|
|
green = "0x48b685";
|
|
|
|
yellow = "0xfec418";
|
|
|
|
blue = "0x06b6ef";
|
|
|
|
magenta = "0x815ba4";
|
|
|
|
cyan = "0x5bc4bf";
|
|
|
|
white = "0xa39e9b";
|
|
|
|
};
|
2022-01-19 08:54:36 +00:00
|
|
|
|
2022-01-19 08:59:45 +00:00
|
|
|
# Bright Colors
|
|
|
|
bright = {
|
|
|
|
black = "0x776e71";
|
|
|
|
red = "0xef6155";
|
|
|
|
green = "0x48b685";
|
|
|
|
yellow = "0xfec418";
|
|
|
|
blue = "0x06b6ef";
|
|
|
|
magenta = "0x815ba4";
|
|
|
|
cyan = "0x5bc4bf";
|
|
|
|
white = "0xe7e9db";
|
|
|
|
};
|
2022-01-19 08:54:36 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2022-01-19 10:58:37 +00:00
|
|
|
|
|
|
|
programs.waybar.style = ''
|
|
|
|
* {
|
|
|
|
border: none;
|
|
|
|
border-radius: 0;
|
|
|
|
font-family: "FuraCode Nerd Font Mono";
|
|
|
|
}
|
|
|
|
|
|
|
|
window#waybar {
|
|
|
|
background: #2f1e2e;
|
|
|
|
}
|
|
|
|
|
|
|
|
#mpd, #cpu {
|
|
|
|
background: #48b685;
|
|
|
|
color: #2f1e2e;
|
|
|
|
}
|
|
|
|
|
|
|
|
#pulseaudio {
|
|
|
|
background: #fec418;
|
|
|
|
color: #2f1e2e;
|
|
|
|
}
|
|
|
|
|
|
|
|
#network, #tray {
|
|
|
|
background: #06b6ef;
|
|
|
|
color: #2f1e2e;
|
|
|
|
}
|
|
|
|
|
|
|
|
#memory {
|
|
|
|
background: #815ba4;
|
|
|
|
}
|
|
|
|
|
|
|
|
#language {
|
|
|
|
background: #5bc4bf;
|
|
|
|
}
|
|
|
|
|
|
|
|
#clock {
|
|
|
|
background: #776e71;
|
|
|
|
}
|
|
|
|
|
|
|
|
.urgent {
|
|
|
|
background: #ef6155;
|
|
|
|
}
|
|
|
|
'';
|
2022-01-18 14:11:43 +00:00
|
|
|
}
|