Added blur config
parent
d549a22794
commit
8c59220b6a
|
@ -1,6 +1,6 @@
|
||||||
return {
|
return {
|
||||||
init = function()
|
init = function()
|
||||||
local conf = conf_dir .. "/modules/picom/picom.conf"
|
local conf = conf_dir .. "/modules/picom/picom.conf"
|
||||||
awful.spawn("picom -b --conf \"" .. conf .. "\"")
|
awful.spawn("picom -b --experimental-backends --conf \"" .. conf .. "\"")
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,18 +1,24 @@
|
||||||
shadow-radius = 0
|
shadow-radius = 0;
|
||||||
shadow-opacity = 0
|
shadow-opacity = 0;
|
||||||
|
|
||||||
// Enable fading initially.
|
// Enable fading initially.
|
||||||
// Finer config is in fade-exclude.
|
// Finer config is in fade-exclude.
|
||||||
fading = true
|
fading = true
|
||||||
fade-in-step = 0.04
|
fade-in-step = 0.04;
|
||||||
fade-out-step = 0.03
|
fade-out-step = 0.03;
|
||||||
fade-delta = 10
|
fade-delta = 10;
|
||||||
|
|
||||||
fade-exclude = [
|
fade-exclude = [
|
||||||
"class_g != 'awesome'"
|
"class_g != 'awesome'"
|
||||||
]
|
];
|
||||||
|
|
||||||
inactive-opacity = 1
|
backend = "glx";
|
||||||
active-opacity = 1
|
blur: {
|
||||||
inactive-dim = 0
|
method = "dual_kawase";
|
||||||
|
strength = 3;
|
||||||
|
};
|
||||||
|
|
||||||
|
inactive-opacity = 1;
|
||||||
|
active-opacity = 1;
|
||||||
|
inactive-dim = 0;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue