general: Added --print_config to display the default config file.
This commit is contained in:
parent
c782af6a06
commit
992d0b38ae
2 changed files with 5 additions and 0 deletions
2
neofetch
2
neofetch
|
@ -4814,6 +4814,7 @@ SCREENSHOT:
|
|||
OTHER:
|
||||
--config /path/to/config Specify a path to a custom config file
|
||||
--config none Launch the script without a config file
|
||||
--print_config Print the default config file to stdout.
|
||||
--stdout Turn off all colors and disables any ASCII/image backend.
|
||||
--help Print this text and exit
|
||||
--version Show neofetch version
|
||||
|
@ -5006,6 +5007,7 @@ get_args() {
|
|||
;;
|
||||
"--stdout") stdout="on" ;;
|
||||
"-v") verbose="on" ;;
|
||||
"--print_config") printf "%s\\n" "$config"; exit ;;
|
||||
"-vv") set -x; verbose="on" ;;
|
||||
"--help") usage ;;
|
||||
"--version")
|
||||
|
|
|
@ -326,6 +326,9 @@ Specify a path to a custom config file
|
|||
\fB\-\-config\fR none
|
||||
Launch the script without a config file
|
||||
.TP
|
||||
\fB\-\-print_config\fR
|
||||
Print the default config file to stdout.
|
||||
.TP
|
||||
\fB\-\-stdout\fR
|
||||
Turn off all colors and disables any ASCII/image backend.
|
||||
.TP
|
||||
|
|
Loading…
Reference in a new issue