From 02ebbd69b1a54face043b68bdd091f9cd4fc18e3 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Fri, 14 May 2021 07:42:44 -0400 Subject: [PATCH] Update kitty config Some nice changes here, although I may stick to alacritty for now since it seems to be faster and I can focus on using tmux instead of having multiple ways to manage windows. --- kitty/.config/kitty/kitty.conf | 33 +++++++++++++++++++++++++-------- 1 file changed, 25 insertions(+), 8 deletions(-) diff --git a/kitty/.config/kitty/kitty.conf b/kitty/.config/kitty/kitty.conf index eb0c5232..b51939d8 100644 --- a/kitty/.config/kitty/kitty.conf +++ b/kitty/.config/kitty/kitty.conf @@ -17,22 +17,39 @@ font_family Hack # Font size (respects DPI) font_size 11 -# Set the default background opacity to 1 -background_opacity 1.0 +# Hide the mouse after 1 second (doesn't work sometimes) +mouse_hide_wait 1 + +# Copy text on select +copy_on_select clipboard + +# Set the wayland title bar to the same color as the terminal window +wayland_titlebar_color background + +# Add a background image +# background_image /usr/share/backgrounds/archlinux/simple.png + +# Most backgrounds need a tint to make text readable on them +# background_tint 0.9 + +# Set the default background opacity +background_opacity 0.9 # Enable changing the background with "kitty @ set-background-opacity " -dynamic_background_opacity yes +# dynamic_background_opacity yes # Allow remote control so the above command can be executed -allow_remote_control yes +# allow_remote_control yes # Use a consistent window size for floating windows -remember_window_size no -initial_window_width 72c -initial_window_height 20c +# remember_window_size no + +# Use a slightly large window size by default +initial_window_width 144c +initial_window_height 40c # Don't limit frames per second to the monitor's refresh rate -sync_to_monitor no +# sync_to_monitor no # Close kitty windows when their corresponding shells exit close_on_child_death yes