Update help info
This commit is contained in:
parent
067570aab5
commit
a8b577fc3a
|
@ -24,6 +24,8 @@ Command:
|
||||||
set WATTS [ARGS] Sets TDP to the requested number in watts
|
set WATTS [ARGS] Sets TDP to the requested number in watts
|
||||||
s WATTS [ARGS] Shortened version of set
|
s WATTS [ARGS] Shortened version of set
|
||||||
|
|
||||||
|
gui Runs graphical user interface
|
||||||
|
|
||||||
help Prints this help text
|
help Prints this help text
|
||||||
COMMAND --help Prints help for specified command"
|
COMMAND --help Prints help for specified command"
|
||||||
|
|
||||||
|
@ -63,7 +65,7 @@ print_help () {
|
||||||
"set")
|
"set")
|
||||||
echo "$set_help_text"
|
echo "$set_help_text"
|
||||||
;;
|
;;
|
||||||
"set")
|
"gui")
|
||||||
echo "$gui_help_text"
|
echo "$gui_help_text"
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
|
@ -270,7 +272,7 @@ case $1 in
|
||||||
set_tdp "${@:2}"
|
set_tdp "${@:2}"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
"gui" | "ui") # Pass to GUI handler
|
"gui") # Pass to GUI handler
|
||||||
gui_handler "${@:2}"
|
gui_handler "${@:2}"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue