From a8b577fc3a6bc4052ce6576c0297513e87be0be2 Mon Sep 17 00:00:00 2001 From: Quad Date: Sat, 22 May 2021 15:10:05 +0200 Subject: [PATCH] Update help info --- scripts/tdp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/scripts/tdp b/scripts/tdp index 54bf481..0ce56f2 100755 --- a/scripts/tdp +++ b/scripts/tdp @@ -23,6 +23,8 @@ Command: set WATTS [ARGS] Sets TDP to the requested number in watts s WATTS [ARGS] Shortened version of set + + gui Runs graphical user interface help Prints this help text COMMAND --help Prints help for specified command" @@ -63,7 +65,7 @@ print_help () { "set") echo "$set_help_text" ;; - "set") + "gui") echo "$gui_help_text" ;; *) @@ -270,7 +272,7 @@ case $1 in set_tdp "${@:2}" ;; - "gui" | "ui") # Pass to GUI handler + "gui") # Pass to GUI handler gui_handler "${@:2}" ;;