I have blur now
This commit is contained in:
parent
0346d9e799
commit
80114f197b
2 changed files with 38 additions and 12 deletions
|
@ -19,7 +19,7 @@ What I use right now (stuff I have to install on a fresh linux install):
|
||||||
* copyq
|
* copyq
|
||||||
* flameshot
|
* flameshot
|
||||||
* nitrogen
|
* nitrogen
|
||||||
* picom/compton
|
* picom-git
|
||||||
* xfce4-power-manager
|
* xfce4-power-manager
|
||||||
* nm-applet
|
* nm-applet
|
||||||
* lxqt-policykit
|
* lxqt-policykit
|
||||||
|
|
48
picom.conf
48
picom.conf
|
@ -13,6 +13,16 @@
|
||||||
# ░▓▓▓▓▓▓▓▓▓▓
|
# ░▓▓▓▓▓▓▓▓▓▓
|
||||||
# ░░░░░░░░░░
|
# ░░░░░░░░░░
|
||||||
|
|
||||||
|
#█▓▒░ animations
|
||||||
|
# requires https://github.com/jonaburg/picom
|
||||||
|
# (These are also the default values)
|
||||||
|
# transition-length = 150
|
||||||
|
# transition-pow-x = 0.2
|
||||||
|
# transition-pow-y = 0.2
|
||||||
|
# transition-pow-w = 0.2
|
||||||
|
# transition-pow-h = 0.2
|
||||||
|
# size-transition = false
|
||||||
|
|
||||||
#█▓▒░ shadows
|
#█▓▒░ shadows
|
||||||
wintypes: {
|
wintypes: {
|
||||||
shadow = true;
|
shadow = true;
|
||||||
|
@ -52,16 +62,31 @@ no-fading-openclose = false;
|
||||||
|
|
||||||
#█▓▒░ blur
|
#█▓▒░ blur
|
||||||
blur-background = false;
|
blur-background = false;
|
||||||
#blur-background-frame = true;
|
blur: {
|
||||||
#blur-method = "dual_kawase";
|
method = "dual_kawase";
|
||||||
#blur-strength = 5;
|
#method = "kernel";
|
||||||
#blur-background-fixed = false;
|
strength = 7;
|
||||||
#blur-background-exclude = [
|
# deviation = 1.0;
|
||||||
# "window_type = 'dock'",
|
# kernel = "11x11gaussian";
|
||||||
# "window_type = 'desktop'",
|
background = false;
|
||||||
# "class_g = 'slop'",
|
background-frame = false;
|
||||||
# "_GTK_FRAME_EXTENTS@:c"
|
background-fixed = false;
|
||||||
#];
|
kern = "3x3box";
|
||||||
|
}
|
||||||
|
|
||||||
|
# Exclude conditions for background blur.
|
||||||
|
blur-background-exclude = [
|
||||||
|
"window_type = 'dock'",
|
||||||
|
"window_type = 'desktop'",
|
||||||
|
"class_g = 'URxvt'",
|
||||||
|
"class_g = 'brave' && argb",
|
||||||
|
#
|
||||||
|
# prevents picom from blurring the background
|
||||||
|
# when taking selection screenshot with `main`
|
||||||
|
# https://github.com/naelstrof/maim/issues/130
|
||||||
|
"class_g = 'slop'",
|
||||||
|
"_GTK_FRAME_EXTENTS@:c"
|
||||||
|
];
|
||||||
|
|
||||||
#█▓▒░ other
|
#█▓▒░ other
|
||||||
mark-wmwin-focused = true;
|
mark-wmwin-focused = true;
|
||||||
|
@ -70,9 +95,10 @@ detect-rounded-corners = true;
|
||||||
detect-client-opacity = true;
|
detect-client-opacity = true;
|
||||||
refresh-rate = 0;
|
refresh-rate = 0;
|
||||||
backend = "glx";
|
backend = "glx";
|
||||||
|
# experimental-backends = true;
|
||||||
glx-no-stencil = true;
|
glx-no-stencil = true;
|
||||||
glx-no-rebind-pixmap = true;
|
glx-no-rebind-pixmap = true;
|
||||||
vsync = false;
|
vsync = true;
|
||||||
xrender-sync-fence = true;
|
xrender-sync-fence = true;
|
||||||
unredir-if-possible = true;
|
unredir-if-possible = true;
|
||||||
dbe = false;
|
dbe = false;
|
||||||
|
|
Loading…
Reference in a new issue