diff --git a/src/main.go b/src/main.go index 46ecfb1..0f496cf 100644 --- a/src/main.go +++ b/src/main.go @@ -91,6 +91,9 @@ func run() { text := module.Execute(module) end := time.Now().UnixMilli() + // Insert default color at the start of the module's text + text = colorMap[0] + text + // Show time taken if ShowModuleTimeTaken { fmt.Printf("Module '%s' took %d milliseconds\n", module.Name, end-start)