aboutsummaryrefslogtreecommitdiff
path: root/picom.conf
diff options
context:
space:
mode:
authorpml68 <tutorialmester@gmail.com>2023-12-27 00:46:22 +0100
committerpml68 <tutorialmester@gmail.com>2023-12-27 00:46:22 +0100
commitf9a968b6818c858d15f459ab9e8315b6df56952a (patch)
tree97f19f54e5fbc2be7c987edadd1a681cb52de015 /picom.conf
downloadsuckless-setup-f9a968b6818c858d15f459ab9e8315b6df56952a.tar.gz
Initial commit
Diffstat (limited to '')
-rw-r--r--picom.conf50
1 files changed, 50 insertions, 0 deletions
diff --git a/picom.conf b/picom.conf
new file mode 100644
index 0000000..36d037a
--- /dev/null
+++ b/picom.conf
@@ -0,0 +1,50 @@
+shadow = true;
+shadow-radius = 7;
+shadow-offset-x = -7;
+shadow-offset-y = -7;
+shadow-exclude = [
+ "name = 'Notification'",
+ "class_g = 'Conky'",
+ "class_g ?= 'Notify-osd'",
+ "class_g = 'Cairo-clock'",
+ "_GTK_FRAME_EXTENTS@:c"
+];
+fading = true;
+fade-in-step = 0.07;
+fade-out-step = 0.07;
+inactive-opacity = 0.8;
+frame-opacity = 0.7;
+inactive-opacity-override = false;
+focus-exclude = [ "class_g = 'Cairo-clock'" ];
+corner-radius = 0
+rounded-corners-exclude = [
+ "window_type = 'dock'",
+ "window_type = 'desktop'"
+];
+blur-method = "dual_kawase";
+blur-size = 50
+blur-strength = 4
+blur-kern = "3x3box";
+blur-background-exclude = [
+ "window_type = 'dock'",
+ "window_type = 'desktop'",
+ "_GTK_FRAME_EXTENTS@:c"
+];
+backend = "xrender";
+vsync = true;
+mark-wmwin-focused = true;
+mark-ovredir-focused = true;
+detect-rounded-corners = true;
+detect-client-opacity = true;
+detect-transient = true;
+glx-no-stencil = true;
+use-damage = true;
+log-level = "warn";
+wintypes:
+{
+ tooltip = { fade = true; shadow = true; opacity = 0.75; focus = true; full-shadow = false; };
+ dock = { shadow = false; clip-shadow-above = true; }
+ dnd = { shadow = false; }
+ popup_menu = { opacity = 0.8; }
+ dropdown_menu = { opacity = 0.8; }
+};