Using picom now
This commit is contained in:
@@ -0,0 +1,65 @@
|
||||
#################################
|
||||
# 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' || class_g = 'Rofi'";
|
||||
corner-radius = 0;
|
||||
},
|
||||
# Dim all app windows besides systems stuff
|
||||
{
|
||||
match = "focused = 0 && window_type = 'normal' && class_g != 'Rofi'";
|
||||
dim = 0.45;
|
||||
}
|
||||
)
|
||||
Reference in New Issue
Block a user