summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.config/picom/picom.conf44
1 files changed, 44 insertions, 0 deletions
diff --git a/.config/picom/picom.conf b/.config/picom/picom.conf
new file mode 100644
index 0000000..b58468e
--- /dev/null
+++ b/.config/picom/picom.conf
@@ -0,0 +1,44 @@
+# picom configuration
+
+# Blur
+
+blur-method = "dual_kawase";
+blur-strength = 5;
+
+# Shadow
+
+shadow = true;
+shadow-radius = 20;
+shadow-offset-x = -20;
+shadow-offset-y = -20;
+shadow-opacity = 0.8;
+
+# Crop shadow of a window fully on a particular Xinerama screen to the screen.
+xinerama-shadow-crop = true;
+
+# General
+
+backend = "glx";
+
+wintypes: {
+ dock = {
+ full-shadow = true;
+ blur-background = false;
+ };
+ utility = {
+ shadow = false;
+ blur-background = false;
+ };
+ popup_menu = {
+ shadow = false;
+ };
+ tooltip = {
+ shadow = false;
+ opacity = 1.0;
+ blur-background = false;
+ };
+ dnd = {
+ shadow = false;
+ blur-background = false;
+ };
+};