From 1035343593326464f60d969d3f350bd8b3f3a324 Mon Sep 17 00:00:00 2001 From: Quentin Aristote Date: Fri, 22 Jul 2022 10:41:29 +0200 Subject: home: config: picom: refactor to use structural settings --- home/config/picom.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/home/config/picom.nix b/home/config/picom.nix index 2992b39..e7badaa 100644 --- a/home/config/picom.nix +++ b/home/config/picom.nix @@ -4,11 +4,11 @@ services.picom = { enable = true; fade = true; - activeOpacity = "1"; - inactiveOpacity = "0.9"; - menuOpacity = "0.8"; - shadow = true; fadeDelta = 4; - blur = true; + activeOpacity = 1.0; + inactiveOpacity = 0.9; + menuOpacity = 0.8; + shadow = true; + settings.blur.method = "gaussian"; }; } -- cgit v1.2.3