xmtop/config.go
2020-02-13 10:15:52 -06:00

29 lines
507 B
Go

package gotop
import (
"time"
"github.com/cjbassi/gotop/colorschemes"
"github.com/cjbassi/gotop/widgets"
)
type Config struct {
ConfigDir string
LogDir string
LogPath string
GraphHorizontalScale int
HelpVisible bool
Colorscheme colorschemes.Colorscheme
UpdateInterval time.Duration
MinimalMode bool
AverageLoad bool
PercpuLoad bool
TempScale widgets.TempScale
Battery bool
Statusbar bool
NetInterface string
LayoutFile string
}