aboutsummaryrefslogtreecommitdiff
path: root/config/picom/picom.conf
diff options
context:
space:
mode:
authorAnhgelus Morhtuuzh <anhgelus.morhtuuzh@gmx.com>2023-07-26 01:23:48 +0200
committerAnhgelus Morhtuuzh <anhgelus.morhtuuzh@gmx.com>2023-07-26 01:23:48 +0200
commitd7272142a6428df8e8cc230cec42aa4e3c7c5c76 (patch)
tree38bf36a6c0a107e4723ff3b6e42c606f1579ea45 /config/picom/picom.conf
parent1b72a07b4459ebdac1399e919bccc8ae215b916d (diff)
fix(picom): xclip taking blurry screenshot
Diffstat (limited to 'config/picom/picom.conf')
-rw-r--r--config/picom/picom.conf87
1 files changed, 43 insertions, 44 deletions
diff --git a/config/picom/picom.conf b/config/picom/picom.conf
index e77b363..6226322 100644
--- a/config/picom/picom.conf
+++ b/config/picom/picom.conf
@@ -1,54 +1,53 @@
-# Opacity
-inactive-opacity = 0.4;
+## Shadow
+shadow = true;
+no-dnd-shadow = true;
+no-dock-shadow = false;
+clear-shadow = true;
+shadow-radius = 12;
+shadow-offset-x = -17;
+shadow-offset-y = -7;
+shadow-opacity = 0.5;
+
+## fading
+fading = true;
+fade-delta = 0.25;
+fade-in-step = 0.02;
+fade-out-step = 0.02;
+fade-exclude = [
+];
+
+## opacity
active-opacity = 0.8;
+inactive-opacity = 0.4;
+frame-opacity = 0.7;
+opacity-rule = [
+ "100:name *= 'Minecraft'"
+];
-opacity-rule = [
- "100:name*='Minecraft'",
- "100:class_g='maim'"
-]
-
-# Border
-corner-radius = 6
-round-borders = 6
-
-# Blur
-blur:
-{
- method = "dual_kawase";
- strength = 12;
- background-exclude = [
- "name*='rect-overlay'"
- "name*='xclip'"
- ];
-}
-
-wintypes:
-{
- normal = { blur-background = true; };
- splash = { blur-background = false; };
-}
-
-# Fading
-fading = false;
-fade-in-step = 0.07;
-fade-out-step = 0.07;
-fade-exclude = [ ];
-
-# Other
+## other
+backend = "glx";
mark-wmwin-focused = true;
mark-ovredir-focused = true;
detect-rounded-corners = true;
detect-client-opacity = true;
-vsync = true;
+vsync = false;
dbe = false;
-unredir-if-possible = true;
+paint-on-overlay = true;
detect-transient = true;
detect-client-leader = true;
-
-# GLX Backend
-backend = "glx";
-glx-no-stencil = true
+invert-color-include = [ ];
glx-copy-from-front = false;
-use-damage = true;
-glx-no-rebind-pixmap = true;
-
+wintypes:
+{
+ tooltip = { fade = true; shadow = true; opacity = 0.75; focus = true; };
+};
+corner-radius = 10.0;
+
+## blur
+blur-background = true;
+blur-background-frame = false;
+blur-background-fixed = false;
+blur-kern = "3x3box";
+blur-method = "dual_kawase";
+blur-strength = 10;
+blur-background-exclude = [ "class_g = 'slop'", "class_g = 'Peek'", "class_g = 'kdeconnect.daemon'", "window_type = 'desktop'" ];