From 866dafd66a2bdf1432ded49ff50624385b3cd289 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Fri, 3 Oct 2025 10:27:47 +0000 Subject: [PATCH] graph: Make backgrounds transparent Signed-off-by: Michael Tremer --- src/daemon/graph.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/daemon/graph.c b/src/daemon/graph.c index 110a0fc..cb04642 100644 --- a/src/daemon/graph.c +++ b/src/daemon/graph.c @@ -42,7 +42,7 @@ struct collecty_graph { const char* DEFAULT_RENDER_ARGS[] = { // Change the background color - "--color=BACK" BLACK, + "--color=BACK" COLOR_WITH_ALPHA(WHITE, OPACITY_100P), // Disable the border around the image "--border=0", -- 2.47.3