dotfiles/modules/services/picom.nix

47 lines
1.1 KiB
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;
2021-09-11 13:15:08 +02:00
inactiveOpacity = "0.90";
2021-12-14 12:13:18 +01:00
opacityRule = [ "100:fullscreen" "100:class_g = 'Polybar'" ];
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;
extraOptions = ''
2021-09-15 00:41:46 +02:00
corner-radius = 10;
2021-11-29 11:54:51 +01:00
rounded-corners-exclude = [
"class_g = 'Polybar'"
2021-09-15 00:41:46 +02:00
]
round-borders = 1;
2021-09-10 11:16:30 +02:00
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-15 00:41:46 +02:00
use-ewmh-active-win = true;
detect-rounded-corners = true;
2021-09-10 11:16:30 +02:00
2021-09-15 00:41:46 +02:00
# stop compositing if there's a fullscreen program
unredir-if-possible = true;
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
}