39 lines
665 B
Text
39 lines
665 B
Text
# SCRIPT NAME:
|
|
# .config/compton/compton.conf
|
|
#
|
|
# AUTHOR:
|
|
# Severin Kaderli <severin@kaderli.dev>
|
|
#
|
|
# DESCRIPTION:
|
|
# This is my compton configuration.
|
|
#
|
|
# USAGE:
|
|
# This file is automatically used by compton.
|
|
|
|
# Settings opacity rules
|
|
opacity-rule = [];
|
|
|
|
# Shadows
|
|
shadow = false;
|
|
shadow-exclude = [
|
|
"name != 'dropdown-terminal'",
|
|
];
|
|
|
|
blur:
|
|
{
|
|
method = "dual_kawase";
|
|
strength = 5;
|
|
background = false;
|
|
background-frame = false;
|
|
background-fixed = false;
|
|
};
|
|
|
|
corner-radius = 0;
|
|
|
|
# Performance improvements
|
|
unredir-if-possible = true;
|
|
backend = "glx";
|
|
glx-no-stencil = true;
|
|
glx-copy-from-front = false;
|
|
vsync = true;
|
|
xrender-sync-fence = true;
|