From e007711578cff4929bbb279d0867d3f40901e023 Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Sun, 11 Jul 2021 08:58:43 +0200 Subject: [PATCH] picom: also add fading for tooltips, notifications and menus --- dotfiles/picom.conf | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/dotfiles/picom.conf b/dotfiles/picom.conf index 870ae6a..2ea6bab 100644 --- a/dotfiles/picom.conf +++ b/dotfiles/picom.conf @@ -18,11 +18,17 @@ opacity-rule = [ "85:!focused" ]; -# Shadows +# Shadow and fading +fade-in-step = 0.08; +fade-out-step = 0.08; wintypes: { - notification = { shadow = true; }; - splash = { shadow = true; }; - dialog = { shadow = true; }; + tooltip = { fade = true; }; + menu = { fade = true; }; + popup_menu = { fade = true; }; + dropdown_menu = { fade = true; }; + notification = { shadow = true; fade = true; }; + splash = { shadow = true; fade = true; }; + dialog = { shadow = true; fade = true; }; };