so many sops
This commit is contained in:
26
modules/desktop-environments/hyprland/config/kitty/default.nix
Executable file
26
modules/desktop-environments/hyprland/config/kitty/default.nix
Executable file
@@ -0,0 +1,26 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
programs.kitty = {
|
||||
enable = true;
|
||||
shellIntegration.enableZshIntegration = true;
|
||||
|
||||
font = {
|
||||
name = "jetbrains mono nerd font";
|
||||
package = pkgs.nerdfonts;
|
||||
size = 12;
|
||||
};
|
||||
|
||||
settings = {
|
||||
include = "~/.config/kitty/nord.conf";
|
||||
bold_font = "auto";
|
||||
italic_font = "auto";
|
||||
bold_italic_font = "auto";
|
||||
mouse_hide_wait = "2.0";
|
||||
cursor_shape = "block";
|
||||
url_color = "#88c0d0";
|
||||
url_style = "dotted";
|
||||
confirm_os_window_close = "0";
|
||||
background_opacity = "0.8";
|
||||
};
|
||||
};
|
||||
}
|
||||
80
modules/desktop-environments/hyprland/config/kitty/macchiato.conf
Executable file
80
modules/desktop-environments/hyprland/config/kitty/macchiato.conf
Executable file
@@ -0,0 +1,80 @@
|
||||
# vim:ft=kitty
|
||||
|
||||
## name: Catppuccin Kitty Macchiato
|
||||
## author: Catppuccin Org
|
||||
## license: MIT
|
||||
## upstream: https://github.com/catppuccin/kitty/blob/main/themes/macchiato.conf
|
||||
## blurb: Soothing pastel theme for the high-spirited!
|
||||
|
||||
|
||||
|
||||
# The basic colors
|
||||
foreground #CAD3F5
|
||||
background #24273A
|
||||
selection_foreground #24273A
|
||||
selection_background #F4DBD6
|
||||
|
||||
# Cursor colors
|
||||
cursor #F4DBD6
|
||||
cursor_text_color #24273A
|
||||
|
||||
# URL underline color when hovering with mouse
|
||||
url_color #F4DBD6
|
||||
|
||||
# Kitty window border colors
|
||||
active_border_color #B7BDF8
|
||||
inactive_border_color #6E738D
|
||||
bell_border_color #EED49F
|
||||
|
||||
# OS Window titlebar colors
|
||||
wayland_titlebar_color #24273A
|
||||
macos_titlebar_color #24273A
|
||||
|
||||
# Tab bar colors
|
||||
active_tab_foreground #181926
|
||||
active_tab_background #C6A0F6
|
||||
inactive_tab_foreground #CAD3F5
|
||||
inactive_tab_background #1E2030
|
||||
tab_bar_background #181926
|
||||
|
||||
# Colors for marks (marked text in the terminal)
|
||||
mark1_foreground #24273A
|
||||
mark1_background #B7BDF8
|
||||
mark2_foreground #24273A
|
||||
mark2_background #C6A0F6
|
||||
mark3_foreground #24273A
|
||||
mark3_background #7DC4E4
|
||||
|
||||
# The 16 terminal colors
|
||||
|
||||
# black
|
||||
color0 #494D64
|
||||
color8 #5B6078
|
||||
|
||||
# red
|
||||
color1 #ED8796
|
||||
color9 #ED8796
|
||||
|
||||
# green
|
||||
color2 #A6DA95
|
||||
color10 #A6DA95
|
||||
|
||||
# yellow
|
||||
color3 #EED49F
|
||||
color11 #EED49F
|
||||
|
||||
# blue
|
||||
color4 #8AADF4
|
||||
color12 #8AADF4
|
||||
|
||||
# magenta
|
||||
color5 #F5BDE6
|
||||
color13 #F5BDE6
|
||||
|
||||
# cyan
|
||||
color6 #8BD5CA
|
||||
color14 #8BD5CA
|
||||
|
||||
# white
|
||||
color7 #B8C0E0
|
||||
color15 #A5ADCB
|
||||
72
modules/desktop-environments/hyprland/config/kitty/nord.conf
Executable file
72
modules/desktop-environments/hyprland/config/kitty/nord.conf
Executable file
@@ -0,0 +1,72 @@
|
||||
# vim:ft=kitty
|
||||
|
||||
# The basic colors
|
||||
foreground #eceff4
|
||||
background #2e3440
|
||||
selection_foreground #2e3440
|
||||
selection_background #b48ead
|
||||
|
||||
# Cursor colors
|
||||
cursor #b48ead
|
||||
cursor_text_color #2e3440
|
||||
|
||||
# URL underline color when hovering with mouse
|
||||
url_color #b48ead
|
||||
|
||||
# Kitty window border colors
|
||||
active_border_color #5e81ac
|
||||
inactive_border_color #3b4252
|
||||
bell_border_color #ebcb8b
|
||||
|
||||
# OS Window titlebar colors
|
||||
wayland_titlebar_color #2e3440
|
||||
macos_titlebar_color #2e3440
|
||||
|
||||
# Tab bar colors
|
||||
active_tab_foreground #4c566a
|
||||
active_tab_background #b48ead
|
||||
inactive_tab_foreground #eceff4
|
||||
inactive_tab_background #3b4252
|
||||
tab_bar_background #4c566a
|
||||
|
||||
# Colors for marks (marked text in the terminal)
|
||||
mark1_foreground #2e3440
|
||||
mark1_background #5e81ac
|
||||
mark2_foreground #2e3440
|
||||
mark2_background #b48ead
|
||||
mark3_foreground #2e3440
|
||||
mark3_background #7DC4E4
|
||||
|
||||
# The 16 terminal colors
|
||||
|
||||
# black
|
||||
color0 #2e3440
|
||||
color8 #3b4252
|
||||
|
||||
# red
|
||||
color1 #bf616a
|
||||
color9 #bf616a
|
||||
|
||||
# green
|
||||
color2 #a3be8c
|
||||
color10 #a3be8c
|
||||
|
||||
# yellow
|
||||
color3 #ebcb8b
|
||||
color11 #ebcb8b
|
||||
|
||||
# blue
|
||||
color4 #5e81ac
|
||||
color12 #5e81ac
|
||||
|
||||
# magenta
|
||||
color5 #b48ead
|
||||
color13 #b48ead
|
||||
|
||||
# cyan
|
||||
color6 #88c0d0
|
||||
color14 #88c0d0
|
||||
|
||||
# white
|
||||
color7 #e5e9f0
|
||||
color15 #d8dee9
|
||||
Reference in New Issue
Block a user