home manager!
also a bunch of other stuff
This commit is contained in:
parent
beee908e58
commit
bb70530786
17 changed files with 1073 additions and 15 deletions
37
cfg/winter/rin/picom.nix
Normal file
37
cfg/winter/rin/picom.nix
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
{ config, ... }: {
|
||||
services.picom = {
|
||||
enable = true;
|
||||
experimentalBackends = true;
|
||||
|
||||
blur = true;
|
||||
blurExclude = [
|
||||
"class_g != 'Alacritty' && class_g != 'Polybar'"
|
||||
];
|
||||
fade = true;
|
||||
fadeDelta = 5;
|
||||
fadeSteps = [ "0.05" "0.05" ];
|
||||
|
||||
inactiveOpacity = "0.8";
|
||||
vSync = true;
|
||||
|
||||
extraOptions = ''
|
||||
glx-no-stencil = true;
|
||||
glx-copy-from-front = false;
|
||||
glx-no-rebind-pixmap = true;
|
||||
use-damage = true;
|
||||
|
||||
blur-method = "dual_kawase";
|
||||
blur-strength = 5;
|
||||
|
||||
unredir-if-possible = true;
|
||||
|
||||
detect-transient = true;
|
||||
detect-client-leader = true;
|
||||
detect-client-opacity = true;
|
||||
detect-rounded-corners = true;
|
||||
use-ewmh-active-win = true;
|
||||
mark-wmwin-focused = true;
|
||||
mark-ovredir-focused = true;
|
||||
'';
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue