From d6577b40e406d28084af03a84cfcf85fc04eacd5 Mon Sep 17 00:00:00 2001 From: garopoulos Date: Thu, 19 Mar 2026 16:48:11 +0200 Subject: [PATCH] Changed type_username default from true to false. --- res/config.ini | 2 +- src/config/Config.zig | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/res/config.ini b/res/config.ini index 19d2100..4ba3954 100644 --- a/res/config.ini +++ b/res/config.ini @@ -348,7 +348,7 @@ start_cmd = $CONFIG_DIRECTORY/ly/startup.sh text_in_center = false # Allow typing username manually -type_username = true +type_username = false # Default vi mode # normal -> normal mode diff --git a/src/config/Config.zig b/src/config/Config.zig index 5906e9b..8a690d6 100644 --- a/src/config/Config.zig +++ b/src/config/Config.zig @@ -89,7 +89,7 @@ sleep_cmd: ?[]const u8 = null, sleep_key: []const u8 = "F3", start_cmd: ?[]const u8 = null, text_in_center: bool = false, -type_username: bool = true, +type_username: bool = false, vi_default_mode: ViMode = .normal, vi_mode: bool = false, waylandsessions: []const u8 = build_options.prefix_directory ++ "/share/wayland-sessions",