xmtop/config.go

29 lines
495 B
Go
Raw Normal View History

2020-02-14 00:15:52 +08:00
package gotop
import (
"io"
"time"
"github.com/cjbassi/gotop/colorschemes"
2020-02-14 00:15:52 +08:00
"github.com/cjbassi/gotop/widgets"
)
type Config struct {
ConfigDir string
LogDir string
LogPath string
GraphHorizontalScale int
HelpVisible bool
Colorscheme colorschemes.Colorscheme
UpdateInterval time.Duration
AverageLoad bool
PercpuLoad bool
TempScale widgets.TempScale
Battery bool
Statusbar bool
NetInterface string
Layout io.Reader
}