~kris/dots

srice

ref: 178c9a25a484ead715392d50e21d03df486b8b41 srice/.config/picom.conf -rw-r--r-- 717 bytes
178c9a25 — Kris Yotam conky: sync proper config from moirai (was the greenred variant) 2 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Picom config

# Backend - use glx for better performance
backend = "glx";
# glx-no-stencil = true; # deprecated in picom 13+
glx-copy-from-front = false;

# Shadows (disabled - minimal setup)
shadow = false;

# Fading (disabled - instant window transitions)
fading = false;

# Fixes
vsync = true;
unredir-if-possible = false;

# Window rules (modern syntax)
rules = (
    { match = "window_type = 'tooltip'"; fade = true; shadow = false; opacity = 0.9; },
    { match = "window_type = 'dock'"; shadow = false; },
    { match = "window_type = 'dnd'"; shadow = false; },
    { match = "class_g = 'Emacs'"; opacity = 1; blur-background = false; shadow = false; },
    { match = "class_g = 'dmenu'"; opacity = 1; },
);