xmtop/colorschemes/template.go
2018-02-27 13:25:08 -08:00

48 lines
762 B
Go

package colorschemes
/*
The standard 256 terminal colors are supported.
-1 = clear
You can combine a color with 'Bold', 'Underline', or 'Reverse' by using bitwise OR ('|').
For example, to get Bold red Labels, you would do 'Labels: 2 | Bold'.
Once you've created a colorscheme, add an entry for it in the `handleColorscheme` function
in `gotop.go`.
*/
// Ignore this
const (
Bold int = 1 << (iota + 9)
Underline
Reverse
)
type Colorscheme struct {
Name string
Author string
Fg int
Bg int
BorderLabel int
BorderLine int
// Try to add at least 8
CPULines []int
MainMem int
SwapMem int
ProcCursor int
Sparkline int
DiskBar int
// Temperature colors depending on if it's over a certain threshold
TempLow int
TempHigh int
}