From 4630291bcc0631eb93c975cfb44f7f6b71373b29 Mon Sep 17 00:00:00 2001 From: Jackson Delahunt Date: Mon, 30 Mar 2026 12:27:33 +1100 Subject: [PATCH] config: address review feedback for shell option Move shell field to correct alphabetical position in Config.zig (after setup_cmd, before show_password_key) --- src/config/Config.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/Config.zig b/src/config/Config.zig index 12c677f..5a11191 100644 --- a/src/config/Config.zig +++ b/src/config/Config.zig @@ -80,10 +80,10 @@ path: ?[]const u8 = "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bi restart_cmd: []const u8 = "/sbin/shutdown -r now", restart_key: []const u8 = "F2", save: bool = true, -shell: bool = true, service_name: [:0]const u8 = "ly", session_log: ?[]const u8 = "ly-session.log", setup_cmd: []const u8 = build_options.config_directory ++ "/ly/setup.sh", +shell: bool = true, show_password_key: []const u8 = "F7", shutdown_cmd: []const u8 = "/sbin/shutdown -a now", shutdown_key: []const u8 = "F1",