From 828b0d359b0486d595ef2e8f850e045fd388a3f7 Mon Sep 17 00:00:00 2001 From: ElnuDev Date: Thu, 5 Jan 2023 19:36:38 -0800 Subject: [PATCH] Fix rounded corners --- picom.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/picom.nix b/picom.nix index c6b677d..3dcfa4d 100644 --- a/picom.nix +++ b/picom.nix @@ -4,10 +4,13 @@ services.picom = { enable = true; settings = { + backend = "glx"; # Fixes black backdrop on some rounded corners corner-radius = 12; round-borders = 1; - rounded-borders-exclude = [ - # TODO: figure out how to exclude polybar, smart gaps + # Ignore polybar + rounded-corners-exclude = [ + "window_type = 'dock'" + "window_type = 'desktop'" ]; }; };