summaryrefslogtreecommitdiffstats
path: root/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'config.go')
-rw-r--r--config.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/config.go b/config.go
index 84298c5..45b7742 100644
--- a/config.go
+++ b/config.go
@@ -1,6 +1,7 @@
package gotop
import (
+ "io"
"time"
"github.com/cjbassi/gotop/colorschemes"
@@ -17,12 +18,11 @@ type Config struct {
Colorscheme colorschemes.Colorscheme
UpdateInterval time.Duration
- MinimalMode bool
AverageLoad bool
PercpuLoad bool
TempScale widgets.TempScale
Battery bool
Statusbar bool
NetInterface string
- LayoutFile string
+ Layout io.Reader
}