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",