dotfiles/modules/services/picom.nix

53 lines
1.3 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-09-09 21:55:28 +02:00
opacityRule = [
"100:fullscreen"
2021-10-24 17:13:37 +02:00
"100:class_g = 'Polybar'"
2021-10-06 15:33:37 +02:00
"85 :class_g = 'kitty' && !focused"
"90 :class_g = 'kitty' && focused"
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;
rounded-cornes-exclude = [
"class_g = 'Polybar'",
"class_g = 'Rofi'"
]
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
}