safe wezterm color scheme, will remove
This commit is contained in:
parent
0e422172cf
commit
9f31b9f3db
3 changed files with 63 additions and 0 deletions
|
@ -45,6 +45,11 @@ in mkIf conf.apps.enable {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
programs.wezterm = {
|
||||||
|
enable = true;
|
||||||
|
# colorSchemes = import ./wezterm.theme.nix { config = config; };
|
||||||
|
};
|
||||||
|
|
||||||
programs.alacritty = {
|
programs.alacritty = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = import ./alacritty.conf.nix { config = config; };
|
settings = import ./alacritty.conf.nix { config = config; };
|
||||||
|
|
48
modules/apps/wezterm.theme.nix
Normal file
48
modules/apps/wezterm.theme.nix
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
{ config, ... }: let
|
||||||
|
inherit (config) theme;
|
||||||
|
in {
|
||||||
|
rosepine = {
|
||||||
|
foreground = theme.text;
|
||||||
|
background = theme.base;
|
||||||
|
cursor_bg = theme.highlight-high;
|
||||||
|
cursor_fg = theme.text;
|
||||||
|
cursor_border = theme.highlight-high;
|
||||||
|
selection_bg = "#2a283e";
|
||||||
|
selection_fg = theme.text;
|
||||||
|
|
||||||
|
ansi = [
|
||||||
|
theme.overlay theme.love theme.pine theme.gold
|
||||||
|
theme.foam theme.iris theme.rose theme.text
|
||||||
|
];
|
||||||
|
|
||||||
|
brights = [
|
||||||
|
theme.muted theme.love theme.pine theme.gold
|
||||||
|
theme.foam theme.iris theme.rose theme.text
|
||||||
|
];
|
||||||
|
|
||||||
|
tab_bar = {
|
||||||
|
background = theme.base;
|
||||||
|
active_tab = {
|
||||||
|
bg_color = theme.overlay;
|
||||||
|
fg_color = theme.text;
|
||||||
|
};
|
||||||
|
inactive_tab = {
|
||||||
|
bg_color = theme.base;
|
||||||
|
fg_color = theme.muted;
|
||||||
|
};
|
||||||
|
inactive_tab_hover = {
|
||||||
|
bg_color = theme.overlay;
|
||||||
|
fg_color = theme.text;
|
||||||
|
};
|
||||||
|
new_tab = {
|
||||||
|
bg_color = theme.base;
|
||||||
|
fg_color = theme.muted;
|
||||||
|
};
|
||||||
|
new_tab_hover = {
|
||||||
|
bg_color = theme.overlay;
|
||||||
|
fg_color = theme.text;
|
||||||
|
};
|
||||||
|
inactive_tab_edge = theme.muted;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -67,6 +67,16 @@ in {
|
||||||
};
|
};
|
||||||
background-color = config.theme.base;
|
background-color = config.theme.base;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
"Dell Inc. DELL U2415 7MT019A90FRU" = {
|
||||||
|
scale = 1;
|
||||||
|
mode = {
|
||||||
|
width = 1920;
|
||||||
|
height = 1200;
|
||||||
|
refresh = 59.950;
|
||||||
|
};
|
||||||
|
background-color = config.theme.base;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
layout = {
|
layout = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue