picom: introduce own config

This commit is contained in:
Marco Thomas
2023-02-08 21:55:49 +01:00
parent d9a8de62b1
commit 2d885de468
2 changed files with 19 additions and 5 deletions

View File

@@ -163,9 +163,6 @@ exec --no-startup-id discord
exec_always --no-startup-id feh --bg-fill ~/cloud/images/wallpaper/wallpaper exec_always --no-startup-id feh --bg-fill ~/cloud/images/wallpaper/wallpaper
# schicky micky # schicky micky
exec_always --no-startup-id pkill picom && picom \ exec_always --no-startup-id pkill picom && picom
--shadow \
--corner-radius 12 \
--rounded-corners-exclude 'class_g = "dmenu"' \
--rounded-corners-exclude 'class_g = "i3bar"'
gaps inner 5 gaps inner 5

View File

@@ -0,0 +1,17 @@
shadow = true;
corner-radius = 12;
rounded-corners-exclude = [
"class_g = 'dmenu'",
"class_g = 'i3bar'"
]
# dont draw shadows e.g. in firefox right click
wintypes:
{
tooltip = { shadow = false; };
menu = { shadow = false; };
dropdown_menu = { shadow = false; };
popup_menu = { shadow = false; };
utility = { shadow = false; };
};