From fbf2395c1cc45c6f2352cf0cf5546e19a8c61ad4 Mon Sep 17 00:00:00 2001 From: RGBCube Date: Sat, 2 Aug 2025 21:12:01 +0300 Subject: [PATCH] darwin: adjust key repeat rates --- modules/darwin/paperwm.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/darwin/paperwm.nix b/modules/darwin/paperwm.nix index ad45ef2..9149b61 100644 --- a/modules/darwin/paperwm.nix +++ b/modules/darwin/paperwm.nix @@ -23,8 +23,8 @@ in { "com.apple.keyboard.fnState" = false; # Don't invert Fn. "com.apple.trackpad.scaling" = 1.5; # Faster mouse speed. - InitialKeyRepeat = 12; - KeyRepeat = 1; + InitialKeyRepeat = 10; # N * 15ms to start repeating, so about 150ms to start repeating. + KeyRepeat = 1; # N * 15ms, so 15ms between each keypress, about 66 presses per second. Very slow but it doesn't go faster than this. NSAutomaticCapitalizationEnabled = false; NSAutomaticDashSubstitutionEnabled = false;