From 8acef320fab0e90425342800a102d52a66e78d73 Mon Sep 17 00:00:00 2001 From: CJ van den Berg Date: Tue, 13 Jan 2026 19:45:43 +0100 Subject: [PATCH] refactor: update default frame limit to 120 fps All my devices and machines have at least 120hz displays and it just so much smoother. --- src/config.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.zig b/src/config.zig index 2d0e8a2..c16ee16 100644 --- a/src/config.zig +++ b/src/config.zig @@ -1,6 +1,6 @@ const builtin = @import("builtin"); -frame_rate: usize = 60, +frame_rate: usize = 120, theme: []const u8 = "ayu-mirage-bordered", light_theme: []const u8 = "ayu-light", input_mode: []const u8 = "flow",