From 07b1bff3a2c0af7e689cb964103ab75f231d766c Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Wed, 19 Apr 2023 16:45:30 +0100 Subject: [PATCH] Set kitty initial size to be sensible --- home/gui/kitty.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/home/gui/kitty.nix b/home/gui/kitty.nix index 87e01b57..9c8d05a9 100644 --- a/home/gui/kitty.nix +++ b/home/gui/kitty.nix @@ -10,7 +10,9 @@ size = 14; }; settings = { - # background_opacity = "0.90"; + initial_window_width = 640; + initial_window_height = 400; + background_opacity = "0.95"; disable_ligatures = "cursor"; show_hyperlink_targets = true; copy_on_select = true;