user/picom: fixes
This commit is contained in:
parent
dd6fcf38ec
commit
189c27b289
1 changed files with 13 additions and 16 deletions
|
|
@ -3,26 +3,26 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
experimentalBackends = true;
|
experimentalBackends = true;
|
||||||
|
|
||||||
blur = true;
|
# blur = true;
|
||||||
blurExclude = [
|
# blurExclude = [
|
||||||
(builtins.concatStringsSep " && " [
|
# (builtins.concatStringsSep " && " [
|
||||||
"class_g != 'Alacritty'"
|
# "class_g != 'Alacritty'"
|
||||||
"class_g != 'kitty'"
|
# "class_g != 'kitty'"
|
||||||
#"class_g != 'Polybar'"
|
# #"class_g != 'Polybar'"
|
||||||
"class_g != 'URxvt'"
|
# "class_g != 'URxvt'"
|
||||||
])
|
# ])
|
||||||
];
|
# ];
|
||||||
fade = true;
|
fade = true;
|
||||||
fadeDelta = 5;
|
fadeDelta = 5;
|
||||||
fadeSteps = [ "0.05" "0.05" ];
|
fadeSteps = [ 0.05 0.05 ];
|
||||||
|
|
||||||
opacityRule = [
|
opacityRules = [
|
||||||
"80:class_g = 'Alacritty' && !focused"
|
"80:class_g = 'Alacritty' && !focused"
|
||||||
"95:class_g = 'kitty' && !focused"
|
"95:class_g = 'kitty' && !focused"
|
||||||
];
|
];
|
||||||
vSync = true;
|
vSync = true;
|
||||||
|
|
||||||
extraOptions = ''
|
settings = {
|
||||||
glx-no-stencil = true;
|
glx-no-stencil = true;
|
||||||
glx-copy-from-front = false;
|
glx-copy-from-front = false;
|
||||||
glx-no-rebind-pixmap = true;
|
glx-no-rebind-pixmap = true;
|
||||||
|
|
@ -30,9 +30,6 @@
|
||||||
glx-use-copysubbuffer-mesa = false;
|
glx-use-copysubbuffer-mesa = false;
|
||||||
use-damage = true;
|
use-damage = true;
|
||||||
|
|
||||||
blur-method = "dual_kawase";
|
|
||||||
blur-strength = 15;
|
|
||||||
|
|
||||||
detect-transient = true;
|
detect-transient = true;
|
||||||
detect-client-leader = true;
|
detect-client-leader = true;
|
||||||
detect-client-opacity = true;
|
detect-client-opacity = true;
|
||||||
|
|
@ -40,6 +37,6 @@
|
||||||
use-ewmh-active-win = true;
|
use-ewmh-active-win = true;
|
||||||
mark-wmwin-focused = true;
|
mark-wmwin-focused = true;
|
||||||
mark-ovredir-focused = true;
|
mark-ovredir-focused = true;
|
||||||
'';
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue