refactor: major theme refactor
new profile catagory: theme. refactor modules for wallpaper, fonts, gtk, and qt. adjusted modules that depend on old theming modules
This commit is contained in:
parent
7d910ba77c
commit
f5e87f2a79
34 changed files with 217 additions and 118 deletions
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
let
|
||||
inherit (config.colorscheme) colors;
|
||||
fonts = config.homeModules.theme.fonts;
|
||||
cfg = config.homeModules.desktop.terminal.foot;
|
||||
in
|
||||
|
||||
|
|
@ -16,10 +17,10 @@ in
|
|||
server.enable = true;
|
||||
settings = {
|
||||
main = {
|
||||
font = "${config.fontProfiles.monospace.family}:pixelsize=18:antialias=true";
|
||||
font-bold = "${config.fontProfiles.monospace.family}:style=Bold:pixelsize=18:antialias=true";
|
||||
font-italic = "${config.fontProfiles.monospace.family}:style=Italic:pixelsize=18:antialias=true";
|
||||
font-bold-italic = "${config.fontProfiles.monospace.family}:style=Bold Italic:pixelsize=18:antialias=true";
|
||||
font = "${fonts.monospace.family}:pixelsize=18:antialias=true";
|
||||
font-bold = "${fonts.monospace.family}:style=Bold:pixelsize=18:antialias=true";
|
||||
font-italic = "${fonts.monospace.family}:style=Italic:pixelsize=18:antialias=true";
|
||||
font-bold-italic = "${fonts.monospace.family}:style=Bold Italic:pixelsize=18:antialias=true";
|
||||
dpi-aware = "yes";
|
||||
letter-spacing = "-1px";
|
||||
bold-text-in-bright = "palette-based";
|
||||
|
|
|
|||
|
|
@ -2,7 +2,9 @@
|
|||
|
||||
let
|
||||
inherit (config.colorscheme) colors;
|
||||
fonts = config.homeModules.theme.font;
|
||||
cfg = config.homeModules.desktop.terminal.kitty;
|
||||
fish = config.homeModules.console.shell.fish;
|
||||
in
|
||||
{
|
||||
|
||||
|
|
@ -14,10 +16,10 @@ in
|
|||
programs.kitty = {
|
||||
enable = true;
|
||||
font = {
|
||||
name = config.fontProfiles.monospace.family;
|
||||
name = fonts.monospace.family;
|
||||
size = 12;
|
||||
};
|
||||
shellIntegration.enableFishIntegration = true;
|
||||
shellIntegration.enableFishIntegration = lib.mkif fish.enable true;
|
||||
settings = {
|
||||
scrollback_lines = 4000;
|
||||
scrollback_pager_history_size = 2048;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue