mio-ops/profiles/picom.nix

20 lines
350 B
Nix
Raw Normal View History

2021-05-13 00:35:35 +00:00
# Configuration for the Picom Compositor
{ config, ... }:
{
services = {
picom = {
enable = true;
backend = "glx";
fade = true;
inactiveOpacity = 0.8;
menuOpacity = 0.8;
opacityRules = [ "100:class_g = 'XScreenSaver'" ];
settings = { use-ewmh-active-win = true; };
vSync = true;
};
};
}