summaryrefslogtreecommitdiffstats
path: root/colorschemes
diff options
context:
space:
mode:
authorCaleb Bassi <calebjbassi@gmail.com>2018-03-03 17:05:52 -0800
committerCaleb Bassi <calebjbassi@gmail.com>2018-03-03 17:05:52 -0800
commit47a98de44b1bf6bb4cbeec5de701f722f6fdf0bd (patch)
tree56d86ffcd60d05707da692e4e87a6a773f92dbf6 /colorschemes
parente79f0e0a83ef78a40c690dbf3455051c43d4705f (diff)
Code cleanup
Diffstat (limited to 'colorschemes')
-rw-r--r--colorschemes/template.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/colorschemes/template.go b/colorschemes/template.go
index 8d65a70..f5a84bb 100644
--- a/colorschemes/template.go
+++ b/colorschemes/template.go
@@ -5,7 +5,7 @@ package colorschemes
-1 = clear
- You can combine a color with 'Bold', 'Underline', or 'Reverse' by using bitwise OR ('|').
+ You can combine a color with 'Bold', 'Underline', or 'Reverse' by using bitwise OR ('|') and the name of the attribute.
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
@@ -29,7 +29,7 @@ type Colorscheme struct {
BorderLabel int
BorderLine int
- // Try to add at least 8
+ // should add at least 8 here
CPULines []int
MainMem int
@@ -41,7 +41,7 @@ type Colorscheme struct {
DiskBar int
- // Temperature colors depending on if it's over a certain threshold
+ // colors the temperature number a different color if it's over a certain threshold
TempLow int
TempHigh int
}