From 27a2318e246db75796d60869aea1695768f8db96 Mon Sep 17 00:00:00 2001 From: Gabriella Bere Date: Fri, 3 Oct 2025 16:42:12 +0100 Subject: [PATCH 1/3] increased hyprland border size to 2 --- home-manager/hyprland.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/home-manager/hyprland.nix b/home-manager/hyprland.nix index 0c31b1d..5912de6 100644 --- a/home-manager/hyprland.nix +++ b/home-manager/hyprland.nix @@ -51,9 +51,11 @@ # General settings general = { gaps_out = 10; + border_size = 2; }; decoration = { rounding = 10; + }; # Allow using SUPER + left click to move windows and SUPER + right click to resize windows From 7a964b79cd6378fe3e4d882706e6ede76b4164e4 Mon Sep 17 00:00:00 2001 From: Gabriella Bere Date: Fri, 3 Oct 2025 16:52:25 +0100 Subject: [PATCH 2/3] unbound kitty ctrl+shift+g as it conflicts with the nvim backwards search thingy --- home-manager/home.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/home-manager/home.nix b/home-manager/home.nix index b7aa27e..875aa0b 100644 --- a/home-manager/home.nix +++ b/home-manager/home.nix @@ -75,5 +75,11 @@ # Add support for bluetooth headset media controls services.mpris-proxy.enable = true; - programs.kitty.enable = true; + programs.kitty = { + enable = true; + keybindings = { + "ctrl+shift+g" = ""; + }; + }; + } From b8add1f44f8afd4999937452248f0ee9f997b4d3 Mon Sep 17 00:00:00 2001 From: Gabriella Bere Date: Fri, 3 Oct 2025 16:53:05 +0100 Subject: [PATCH 3/3] Revert "unbound kitty ctrl+shift+g as it conflicts" This reverts commit 7a964b79cd6378fe3e4d882706e6ede76b4164e4. i was wrong there isnt a conflict, the key i wanted was ctrl+t to go back a search term, which of course on the firefox vim cheatsheet is ctrl+G since ctrl+t is taken by the default new tab keybind --- home-manager/home.nix | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/home-manager/home.nix b/home-manager/home.nix index 875aa0b..b7aa27e 100644 --- a/home-manager/home.nix +++ b/home-manager/home.nix @@ -75,11 +75,5 @@ # Add support for bluetooth headset media controls services.mpris-proxy.enable = true; - programs.kitty = { - enable = true; - keybindings = { - "ctrl+shift+g" = ""; - }; - }; - + programs.kitty.enable = true; }