feat(home): add build version info to home screen

This commit is contained in:
CJ van den Berg 2025-02-05 16:40:31 +01:00
parent 6f80e487aa
commit c351d3fdea
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
2 changed files with 3 additions and 0 deletions

View file

@ -213,6 +213,7 @@
["k", "open_keybind_config"],
["t", "change_theme"],
["f", "change_fontface"],
["v", "open_version_info"],
["q", "quit"],
["ctrl+f ctrl+f ctrl+f ctrl+f ctrl+f", "home_sheeran"],
["ctrl+j", "toggle_panel"],

View file

@ -38,6 +38,7 @@ const menu_commands = if (build_options.gui) &[_][]const u8{
"toggle_input_mode",
"change_theme",
"change_fontface",
"open_version_info",
"quit",
} else &[_][]const u8{
"open_help",
@ -49,6 +50,7 @@ const menu_commands = if (build_options.gui) &[_][]const u8{
"open_keybind_config",
"toggle_input_mode",
"change_theme",
"open_version_info",
"quit",
};