add config toggle for full-row cursor

This commit is contained in:
Bradley Cicenas
2018-09-17 01:33:52 +00:00
parent cf352f7c8a
commit caf6fc63c1
2 changed files with 27 additions and 17 deletions

View File

@@ -5,17 +5,22 @@ var switches = []*Switch{
&Switch{
Key: "sortReversed",
Val: false,
Label: "Reverse Sort Order",
Label: "Reverse sort order",
},
&Switch{
Key: "allContainers",
Val: true,
Label: "Show All Containers",
Label: "Show all containers",
},
&Switch{
Key: "fullRowCursor",
Val: true,
Label: "Highlight entire cursor row (vs. name only)",
},
&Switch{
Key: "enableHeader",
Val: true,
Label: "Enable Status Header",
Label: "Enable status header",
},
&Switch{
Key: "scaleCpu",