summaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorSean E. Russell <ser@ser1.net>2020-02-14 07:19:28 -0600
committerSean E. Russell <ser@ser1.net>2020-02-14 07:19:28 -0600
commitc0c2cfb11a4cd4cad15a95e31ec0ed520611389a (patch)
treeee88d8e8b2932700010582507ba357825d52095e /cmd
parent4e2275c9f7879b1b0e2be0b5ffd1c6a0fb9a104e (diff)
parent99bd4af7a82e434f5c1b320f949a6543ec24f62a (diff)
Merge remote-tracking branch 'jrswab/nordColorScheme'
Diffstat (limited to 'cmd')
-rw-r--r--cmd/gotop/main.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/cmd/gotop/main.go b/cmd/gotop/main.go
index 1ef42d4..e9a9a02 100644
--- a/cmd/gotop/main.go
+++ b/cmd/gotop/main.go
@@ -160,6 +160,8 @@ func handleColorscheme(c string) (colorschemes.Colorscheme, error) {
cs = colorschemes.Vice
case "default-dark":
cs = colorschemes.DefaultDark
+ case "nord":
+ cs = colorschemes.Nord
default:
custom, err := getCustomColorscheme(conf, c)
if err != nil {