summaryrefslogtreecommitdiff
path: root/picom/picom.conf
diff options
context:
space:
mode:
Diffstat (limited to 'picom/picom.conf')
-rw-r--r--picom/picom.conf68
1 files changed, 68 insertions, 0 deletions
diff --git a/picom/picom.conf b/picom/picom.conf
new file mode 100644
index 0000000..14ab14a
--- /dev/null
+++ b/picom/picom.conf
@@ -0,0 +1,68 @@
+# Shadows #
+shadow = true;
+shadow-radius = 20;
+shadow-opacity = 1;
+shadow-offset-x = -7;
+shadow-offset-y = -7;
+
+shadow-exclude = [
+ "name = 'Notification'",
+ "class_g = 'Conky'",
+ "class_g ?= 'Notify-osd'",
+ "class_g = 'Cairo-clock'",
+ "class_g = 'Dunst'",
+ "_GTK_FRAME_EXTENTS@:c"
+];
+
+# Fading #
+fading = true
+fade-in-step = 0.1;
+fade-out-step = 0.1;
+
+# Transparency / Opacity #
+inactive-opacity = 0.9;
+#frame-opacity = 0.7;
+inactive-opacity-override = false;
+
+opacity-rule = [
+ "100:class_g = 'firefox'",
+ "100:class_g = 'Brave-browser'",
+ "100:class_g = 'Shotcut'",
+ "100:class_i = 'ncmpzug'",
+ "100:class_g = 'Dino'",
+ "100:class_g = 'Zathura'",
+ "100:class_g = 'libreoffice-startcenter'",
+ "100:class_g = 'libreoffice-writer'",
+ "100:class_g = 'krita'",
+ "100:class_g = 'mpv'"
+ ];
+
+# Background-Blurring #
+blur-kern = "3x3box";
+blur-background-exclude = [
+ "window_type = 'dock'",
+ "window_type = 'desktop'",
+ "_GTK_FRAME_EXTENTS@:c"
+];
+
+# General Settings #
+backend = "xrender";
+vsync = true
+mark-wmwin-focused = true;
+mark-ovredir-focused = true;
+detect-rounded-corners = true;
+detect-client-opacity = true;
+refresh-rate = 0
+detect-transient = true
+detect-client-leader = true
+use-damage = true
+log-level = "warn";
+
+wintypes:
+{
+ tooltip = { fade = true; shadow = true; opacity = 0.75; focus = true; full-shadow = false; };
+ dock = { shadow = false; }
+ dnd = { shadow = false; }
+ popup_menu = { opacity = 0.8; }
+ dropdown_menu = { opacity = 0.8; }
+};