From a4d4a348847b1fa4fc8db47e9f3e58d3fe540fbc Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Tue, 6 Feb 2024 22:19:59 +0000 Subject: [PATCH] awesome: fix calendar formatting The code returned to reset the color seems to have changed. This caused the rest of the formatting to break and no highlighting to be applied at all. --- awesome/widgets/calendar.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awesome/widgets/calendar.lua b/awesome/widgets/calendar.lua index a8acb07..3206253 100644 --- a/awesome/widgets/calendar.lua +++ b/awesome/widgets/calendar.lua @@ -84,7 +84,7 @@ function calendar:show(inc_offset) text = text:gsub("%[7m","") - text = text:gsub("%[27m", "") + text = text:gsub("%[0m", "") cal_notification = naughty.notify({ text = text, -- 2.48.1