From 8160460e7a483799d25b555e0382f59a1542911d Mon Sep 17 00:00:00 2001 From: DeveloperDurp Date: Wed, 24 Jul 2024 17:04:59 -0500 Subject: [PATCH] move to kitty --- .config/kitty/kitty.conf | 85 +++++++++++++++++++ .config/sway/config | 2 +- .config/tmux/tmux.conf | 3 + ansible/roles/packages/vars/Archlinux.yml | 2 +- ansible/roles/packages/vars/Pop!_OS-22.04.yml | 2 + 5 files changed, 92 insertions(+), 2 deletions(-) create mode 100644 .config/kitty/kitty.conf diff --git a/.config/kitty/kitty.conf b/.config/kitty/kitty.conf new file mode 100644 index 0000000..cf641cc --- /dev/null +++ b/.config/kitty/kitty.conf @@ -0,0 +1,85 @@ +# vim:ft=kitty + +## name: Catppuccin Kitty Mocha +## author: Catppuccin Org +## license: MIT +## upstream: https://github.com/catppuccin/kitty/blob/main/themes/mocha.conf +## blurb: Soothing pastel theme for the high-spirited! + +font_family GoMono Nerd Font +bold_font auto +italic_font auto +bold_italic_font auto + +font_size 12 + +# The basic colors +foreground #cdd6f4 +background #1e1e2e +selection_foreground #1e1e2e +selection_background #f5e0dc + +# Cursor colors +cursor #f5e0dc +cursor_text_color #1e1e2e + +# URL underline color when hovering with mouse +url_color #f5e0dc + +# Kitty window border colors +active_border_color #b4befe +inactive_border_color #6c7086 +bell_border_color #f9e2af + +# OS Window titlebar colors +wayland_titlebar_color system +macos_titlebar_color system + +# Tab bar colors +active_tab_foreground #11111b +active_tab_background #cba6f7 +inactive_tab_foreground #cdd6f4 +inactive_tab_background #181825 +tab_bar_background #11111b + +# Colors for marks (marked text in the terminal) +mark1_foreground #1e1e2e +mark1_background #b4befe +mark2_foreground #1e1e2e +mark2_background #cba6f7 +mark3_foreground #1e1e2e +mark3_background #74c7ec + +# The 16 terminal colors + +# black +color0 #45475a +color8 #585b70 + +# red +color1 #f38ba8 +color9 #f38ba8 + +# green +color2 #a6e3a1 +color10 #a6e3a1 + +# yellow +color3 #f9e2af +color11 #f9e2af + +# blue +color4 #89b4fa +color12 #89b4fa + +# magenta +color5 #f5c2e7 +color13 #f5c2e7 + +# cyan +color6 #94e2d5 +color14 #94e2d5 + +# white +color7 #bac2de +color15 #a6adc8 diff --git a/.config/sway/config b/.config/sway/config index 71c0b3e..03b52ed 100644 --- a/.config/sway/config +++ b/.config/sway/config @@ -10,7 +10,7 @@ set $left h set $down j set $up k set $right l -set $term terminator +set $term kitty set $menu wofi include /etc/sway/config-vars.d/* diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf index f0c11ff..44a9500 100644 --- a/.config/tmux/tmux.conf +++ b/.config/tmux/tmux.conf @@ -6,7 +6,10 @@ set -g @yank_selection 'clipboard' unbind C-b set -g prefix C-Space bind C-Space send-prefix +set -g allow-passthrough on +set -ga update-environment TERM +set -ga update-environment TERM_PROGRAM # Vim style pane selection bind h select-pane -L bind j select-pane -D diff --git a/ansible/roles/packages/vars/Archlinux.yml b/ansible/roles/packages/vars/Archlinux.yml index 2429f81..c29978e 100644 --- a/ansible/roles/packages/vars/Archlinux.yml +++ b/ansible/roles/packages/vars/Archlinux.yml @@ -3,7 +3,6 @@ required_packages_pacman: - waybar - stow - lazygit - - terminator - tmux - fzf - zoxide @@ -67,6 +66,7 @@ required_packages_pacman: - flatpak - ly - seahorse + - kitty flatpak_remote: - {name: 'flathub', url: "https://dl.flathub.org/repo/flathub.flatpakrepo"} diff --git a/ansible/roles/packages/vars/Pop!_OS-22.04.yml b/ansible/roles/packages/vars/Pop!_OS-22.04.yml index 94e3f80..a9c7378 100644 --- a/ansible/roles/packages/vars/Pop!_OS-22.04.yml +++ b/ansible/roles/packages/vars/Pop!_OS-22.04.yml @@ -19,6 +19,7 @@ required_packages_brew: - eza - fastfetch - vivid + - yazi apt_keys: - https://packages.microsoft.com/keys/microsoft.asc @@ -42,6 +43,7 @@ required_packages_apt: - podman - brightnessctl - pavucontrol + - kitty flatpak_remote: - {name: 'flathub', url: "https://dl.flathub.org/repo/flathub.flatpakrepo"}