17 lines
343 B
Nix
17 lines
343 B
Nix
{
|
|
home.file.".config/picom/picom.conf" = {
|
|
recursive = true;
|
|
text = ''
|
|
vsync = true;
|
|
backend = "xrender";
|
|
shadow = true;
|
|
shadow-radius = 10;
|
|
shadow-offset-x = -5;
|
|
shadow-offset-y = -5;
|
|
fading = true;
|
|
fade-in-step = 0.2;
|
|
fade-out-step = 0.2;
|
|
fade-delta = 50;
|
|
'';
|
|
};
|
|
}
|