From b52145614f40fdf895d3cfbc0c93d2541f711cab Mon Sep 17 00:00:00 2001 From: EnumDev Date: Mon, 22 Dec 2025 13:40:17 +0200 Subject: [PATCH] Insert default color at the start of each module's text --- src/main.go | 3 +++ 1 file changed, 3 insertions(+) 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)