Include the log file path in the help text.
This commit is contained in:
@ -81,10 +81,6 @@ Options:
|
|||||||
--print-paths List out the paths that gotop will look for gotop.conf, layouts, color schemes, and extensions
|
--print-paths List out the paths that gotop will look for gotop.conf, layouts, color schemes, and extensions
|
||||||
--print-keys Show the keyboard bindings
|
--print-keys Show the keyboard bindings
|
||||||
|
|
||||||
Colorschemes and layouts that are not built-in are searched for (in order) in:
|
|
||||||
%s
|
|
||||||
The first path in this list is always the cwd.
|
|
||||||
|
|
||||||
Built-in layouts:
|
Built-in layouts:
|
||||||
default
|
default
|
||||||
minimal
|
minimal
|
||||||
@ -99,7 +95,14 @@ Colorschemes:
|
|||||||
solarized16-light
|
solarized16-light
|
||||||
monokai
|
monokai
|
||||||
vice
|
vice
|
||||||
`, strings.Join(cpaths, ", "))
|
|
||||||
|
Colorschemes and layouts that are not built-in are searched for (in order) in:
|
||||||
|
%s
|
||||||
|
The first path in this list is always the cwd.
|
||||||
|
|
||||||
|
Log files are stored in %s
|
||||||
|
|
||||||
|
`, strings.Join(cpaths, ", "), filepath.Join(conf.ConfigDir.QueryCacheFolder().Path, logging.LOGFILE))
|
||||||
|
|
||||||
var err error
|
var err error
|
||||||
conf.Colorscheme, err = colorschemes.FromName(conf.ConfigDir, "default")
|
conf.Colorscheme, err = colorschemes.FromName(conf.ConfigDir, "default")
|
||||||
|
Reference in New Issue
Block a user