37 lines
643 B
Plaintext
37 lines
643 B
Plaintext
# EXAMPLE CONFIG AT : /etc/xdg/picom.conf
|
|
backend = "xrender"
|
|
|
|
|
|
# BLURRRRR
|
|
blur:
|
|
{
|
|
method = "box";
|
|
size = 10;
|
|
strength = 7;
|
|
background = false;
|
|
background-fixed = true;
|
|
};
|
|
|
|
shadow = false;
|
|
fading = true;
|
|
fade-delta = 5;
|
|
|
|
# ROUNDER EDGES
|
|
# corner-radius = 15;
|
|
# rounded-corners-exclude = [
|
|
# "class_g = 'i3bar'",
|
|
# "class_g = 'i3-nagbar'"
|
|
# ];
|
|
|
|
# OPACITYYY
|
|
inactive-opacity = 0.8;
|
|
active-opacity = 1;
|
|
opacity-rule = [
|
|
"60:class_g = 'Sakura' && !focused",
|
|
"80:class_g = 'Conky' && focused",
|
|
"60:class_g = 'Conky' && !focused",
|
|
"90:class_g = 'Vesktop'",
|
|
"90:class_g = 'librewolf' && !focused",
|
|
"100:class_g = 'Rofi'"
|
|
];
|