From 2abeb3f0bd957792dc23bd251c23ad50075b3bb5 Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Mon, 1 Nov 2021 14:18:48 +0100 Subject: [PATCH] picom: add shadows --- config | 2 +- dotfiles/picom.conf | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/config b/config index 677e3af..5320631 100644 --- a/config +++ b/config @@ -22,7 +22,7 @@ client.placeholder #000000 #0c0c0c #ffffff #000000 #0c0c0c client.background #ffffff # gaps -gaps inner 10 +gaps inner 12 smart_gaps on # audio diff --git a/dotfiles/picom.conf b/dotfiles/picom.conf index c6dd2cc..89cfe7a 100644 --- a/dotfiles/picom.conf +++ b/dotfiles/picom.conf @@ -37,8 +37,13 @@ opacity-rule = [ # Shadow and fading fade-in-step = 0.08; fade-out-step = 0.08; +shadow-opacity = 0.9; +shadow-radius = 15; +shadow-offset-x = -15; +shadow-offset-y = -15; wintypes: { + normal = { shadow = true; }; combo = { fade = true; }; dropdown_menu = { fade = true; }; menu = { fade = true; };