This commit is contained in:
iFargle 2023-08-21 23:29:41 +09:00
parent 9ca48e473f
commit 9da54fa142

View file

@ -1,39 +1,39 @@
{ ... }: { { ... }: {
programs.gnome-terminal = { programs.gnome-terminal = {
enable = true; enable = true;
themeVariant = "system"; themeVariant = "system";
profile."Default" = { profile."Default" = {
boldIsBright = true; boldIsBright = true;
cursorShape = "block"; cursorShape = "block";
font = "Jetbrains Regular Mono"; font = "Jetbrains Regular Mono";
colors = { colors = {
# https://github.com/Gogh-Co/Gogh/blob/master/themes/Gruvbox%20Dark.yml # https://github.com/Gogh-Co/Gogh/blob/master/themes/Gruvbox%20Dark.yml
# highlight = [ ]; # highlight = [ ];
palette = [ palette = [
"#282828" # Black (Host) "#282828" # Black (Host)
"#CC241D" # Red (Syntax string) "#CC241D" # Red (Syntax string)
"#98971A" # Green (Command) "#98971A" # Green (Command)
"#D79921" # Yellow (Command second) "#D79921" # Yellow (Command second)
"#458588" # Blue (Path) "#458588" # Blue (Path)
"#B16286" # Magenta (Syntax var) "#B16286" # Magenta (Syntax var)
"#689D6A" # Cyan (Prompt) "#689D6A" # Cyan (Prompt)
"#A89984" # White "#A89984" # White
"#928374" # Bright Black "#928374" # Bright Black
"#FB4934" # Bright Red (Command error) "#FB4934" # Bright Red (Command error)
"#B8BB26" # Bright Green (Exec) "#B8BB26" # Bright Green (Exec)
"#FABD2F" # Bright Yellow "#FABD2F" # Bright Yellow
"#83A598" # Bright Blue (Folder) "#83A598" # Bright Blue (Folder)
"#D3869B" # Bright Magenta "#D3869B" # Bright Magenta
"#8EC07C" # Bright Cyan "#8EC07C" # Bright Cyan
"#EBDBB2" # Bright White "#EBDBB2" # Bright White
"#282828" # Background "#282828" # Background
"#EBDBB2" # Foreground (Text) "#EBDBB2" # Foreground (Text)
"#EBDBB2" # Cursor "#EBDBB2" # Cursor
]; ];
};
}; };
}; };
};
} }