From ecc2e782842a90cb412d3d968eb65bdb3667eafc Mon Sep 17 00:00:00 2001 From: sonst-was Date: Thu, 18 Dec 2025 21:35:38 +0100 Subject: [PATCH] Update AppConsole.vala On low resolution screens (like a recovery console or tty) printing the entire help message can hide the actual error message (by printing too much text and thus scrolling past the error). Imo advising to do 'timeshift --help' should be enough. --- src/AppConsole.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AppConsole.vala b/src/AppConsole.vala index d5ddb0bc..79289866 100644 --- a/src/AppConsole.vala +++ b/src/AppConsole.vala @@ -258,7 +258,7 @@ public class AppConsole : GLib.Object { LOG_TIMESTAMP = false; log_error("%s: %s".printf( _("Invalid command line arguments"), args[k]), true); - log_msg(help_message()); + log_error("Run 'timeshift --help' to list all available options"); App.exit_app(1); break; }