Files
dotfiles/config/picom/picom.conf
T

66 lines
1.4 KiB
Plaintext

#################################
# Fading #
#################################
fading = true;
fade-in-step = 0.08;
fade-out-step = 0.08;
#################################
# Transparency / Opacity #
#################################
frame-opacity = 1.0;
#################################
# Corners #
#################################
corner-radius = 13;
#################################
# FAST SNAPPY ANIMATIONS #
#################################
animations = (
{
triggers = ["open", "show"];
preset = "appear";
duration = 0.20;
},
{
triggers = ["close", "hide"];
preset = "disappear";
duration = 0.20;
},
{
triggers = ["geometry"];
preset = "geometry-change";
duration = 0.30;
}
);
#################################
# General Settings #
#################################
backend = "xrender";
dithered-present = false;
vsync = true;
detect-rounded-corners = true;
detect-client-opacity = true;
detect-transient = true;
use-damage = true;
log-level = "warn";
#################################
# Window Rules #
#################################
rules: (
# No rounded corners on dock and desktop
{
match = "window_type = 'dock' || window_type = 'desktop'";
corner-radius = 0;
},
# Dim all app windows besides systems stuff
{
match = "focused = 0 && window_type = 'normal' && class_g != 'Rofi'";
dim = 0.45;
}
)