dotfiles/system/.config/compton/compton.conf
Severin Kaderli 33aaca49ba
Add blur to transparent windows
Signed-off-by: Severin Kaderli <severin@kaderli.dev>
2019-07-30 11:42:44 +02:00

35 lines
No EOL
573 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 = [
"75:class_g = 'Nemo'",
"75:class_g = 'Thunar'"
];
# Shadows
shadow = true;
blur:
{
method = "gaussian";
size = 10;
deviation = 5.0;
};
# Performance improvements
unredir-if-possible = true;
backend = "glx";
glx-no-stencil = true;
glx-copy-from-front = false;
vsync = true;
xrender-sync-fence = true;