From 6d454821f9f6cd1a8f052b251bb1ff61451b2c7b Mon Sep 17 00:00:00 2001 From: neru Date: Thu, 8 May 2025 01:38:50 -0300 Subject: [PATCH] style: change status bar col --- lua/CC Tweaked/tutel/tutel-host.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lua/CC Tweaked/tutel/tutel-host.lua b/lua/CC Tweaked/tutel/tutel-host.lua index af72c8d..19588f7 100644 --- a/lua/CC Tweaked/tutel/tutel-host.lua +++ b/lua/CC Tweaked/tutel/tutel-host.lua @@ -304,10 +304,10 @@ function drawLogs(x0, y0, x1, y1) if remaining > 0 then term.write((" "):rep(remaining)) end - + drawnLines = drawnLines + 1 end - + term.setBackgroundColor(prevColourBg) term.setTextColor(prevColourFg) end @@ -316,7 +316,7 @@ end function drawStatusBar(y) term.setCursorPos(1, y) - term.setBackgroundColor(colors.green) + term.setBackgroundColor(colors.gray) term.setTextColor(colors.white) term.clearLine()