diff options
Diffstat (limited to 'hosts/sofue')
| -rw-r--r-- | hosts/sofue/configuration.nix | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/hosts/sofue/configuration.nix b/hosts/sofue/configuration.nix index 9c61f4e..b346322 100644 --- a/hosts/sofue/configuration.nix +++ b/hosts/sofue/configuration.nix @@ -158,8 +158,10 @@ in rec { homeDir = "${config.users.users.andrew.home}"; in { programs.kitty = { + # My understanding is that if repaint_delay equates to a refresh rate + # of just under my monitor's that VRR can avoid all tearing. extraConfig = '' - repaint_delay 4 + repaint_delay 7 input_delay 1 ''; }; @@ -186,8 +188,8 @@ in rec { transform = "270"; #position = "1920 0"; position = "0 0"; - allow_tearing = "yes"; - max_render_time = "off"; + allow_tearing = "no"; + max_render_time = "7"; render_bit_depth = "10"; bg = "#${colo.background-alt} solid_color"; }; |