From adaa827aa4f56944f336b61e630b0fd172be7e51 Mon Sep 17 00:00:00 2001 From: tecnolgd <203659863+tecnolgd@users.noreply.github.com> Date: Mon, 29 Jun 2026 13:47:53 +0000 Subject: [PATCH] chore: improve 'help' data ui --- src/core/command_handler.cpp | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/src/core/command_handler.cpp b/src/core/command_handler.cpp index bf4e814..3bb567d 100644 --- a/src/core/command_handler.cpp +++ b/src/core/command_handler.cpp @@ -102,12 +102,20 @@ void cmdHandler() { } else if (command == "help") { std::cout << "\n\t-- Available commands --\n"; - std::cout << "launch : Launch an application\n"; + std::cout << "launch / : Launch an application\n\n"; std::cout << "shortcut : Manage shortcuts\n"; + std::cout << " > shortcut add : Create a new shortcut called \"new_shortcut\" for the existing app \"app\"\n"; + std::cout << " > shortcut remove : Remove the shortcut\n"; + std::cout << " > shortcut list : List all the existing shortcut-app mappings\n\n"; std::cout << "tasks : View running tasks\n"; - std::cout << "theme : Change theme\n"; - std::cout << "config : Config settings\n"; + std::cout << "theme : Change interface theme\n"; + std::cout << " > theme light : Shift interface to light mode\n"; + std::cout << " > theme dark : Shift interface to dark mode\n\n"; + std::cout << "config : Config settings\n\n"; std::cout << "history : Check History\n"; + std::cout << " > history clear : Clear existing command_handler history\n"; + std::cout << " > history list : List command history\n"; + std::cout << " > history goto : Display command present at the given history index\n\n"; std::cout << "stats : View system stats (CPU time,Memory usage, Uptime)\n"; std::cout << "sm : Session manager\n"; std::cout << "exit/quit : Exit\n";