Rename compton to picom configuration
Signed-off-by: Severin Kaderli <severin@kaderli.dev>
This commit is contained in:
parent
4c12bfcd59
commit
6979290a9f
2 changed files with 1 additions and 1 deletions
40
system/.config/picom/picom.conf
Normal file
40
system/.config/picom/picom.conf
Normal file
|
@ -0,0 +1,40 @@
|
|||
# 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'",
|
||||
"75:class_g = 'Rofi'"
|
||||
];
|
||||
|
||||
# Shadows
|
||||
shadow = true;
|
||||
shadow-exclude = [
|
||||
"name = 'Polybar tray window'",
|
||||
"class_g = 'Polybar'"
|
||||
]
|
||||
|
||||
blur:
|
||||
{
|
||||
method = "gaussian";
|
||||
size = 20;
|
||||
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;
|
Loading…
Add table
Add a link
Reference in a new issue