dotfiles/modules/services/picom.nix

37 lines
911 B
Nix
Raw Normal View History

2021-09-09 21:55:28 +02:00
{ config, lib, pkgs, ... }:
2021-11-11 18:34:54 +01:00
{
home-manager.users.moritz = {
2021-09-09 21:55:28 +02:00
services.picom = {
enable = true;
2022-02-07 18:14:25 +01:00
package = pkgs.picom-next;
2021-09-09 21:55:28 +02:00
blur = true;
2021-10-24 17:13:37 +02:00
blurExclude = [ "class_g = 'Polybar'" ];
2021-09-10 11:16:30 +02:00
experimentalBackends = true;
2022-02-07 18:14:25 +01:00
inactiveOpacity = "0.97";
2021-12-27 12:59:33 +01:00
opacityRule = [ "100:fullscreen" "100:class_g = 'Polybar'" ];
vSync = true;
2021-09-10 11:16:30 +02:00
extraOptions = ''
2021-09-15 00:41:46 +02:00
# improve performance
glx-no-rebind-pixmap = true;
glx-no-stencil = true;
2021-09-10 11:16:30 +02:00
2021-09-15 00:41:46 +02:00
# fastest swap method
glx-swap-method = 1;
2021-09-10 11:16:30 +02:00
2021-09-15 00:41:46 +02:00
# dual kawase blur
blur-background-fixed = false;
blur-method = "dual_kawase";
2021-10-06 15:33:37 +02:00
blur-strength = 2;
2021-09-10 11:16:30 +02:00
2021-09-15 00:41:46 +02:00
# group wintypes and don't focus a menu (Telegram)
detect-transient = true;
detect-client-leader = true;
2021-09-10 11:16:30 +02:00
2021-09-15 00:41:46 +02:00
# needed for nvidia with glx backend
xrender-sync-fence = true;
'';
2021-09-09 21:55:28 +02:00
};
2021-09-15 00:41:46 +02:00
};
2021-11-11 18:34:54 +01:00
}