fix picom inactive window blue/dim
This commit is contained in:
parent
1771a985bb
commit
d33a9bb630
3 changed files with 7 additions and 7 deletions
|
@ -98,10 +98,10 @@ fade-out-step = 0.03;
|
||||||
|
|
||||||
|
|
||||||
# Opacity of inactive windows. (0.1 - 1.0, defaults to 1.0)
|
# Opacity of inactive windows. (0.1 - 1.0, defaults to 1.0)
|
||||||
inactive-opacity = 0.8;
|
inactive-opacity = 0.7;
|
||||||
|
|
||||||
# Opacity of window titlebars and borders. (0.1 - 1.0, disabled by default)
|
# Opacity of window titlebars and borders. (0.1 - 1.0, disabled by default)
|
||||||
frame-opacity = 0.7;
|
frame-opacity = 0.5;
|
||||||
|
|
||||||
# Let inactive opacity set by -i override the '_NET_WM_WINDOW_OPACITY' values of windows.
|
# Let inactive opacity set by -i override the '_NET_WM_WINDOW_OPACITY' values of windows.
|
||||||
inactive-opacity-override = true;
|
inactive-opacity-override = true;
|
||||||
|
@ -110,7 +110,7 @@ inactive-opacity-override = true;
|
||||||
# active-opacity = 1.0
|
# active-opacity = 1.0
|
||||||
|
|
||||||
# Dim inactive windows. (0.0 - 1.0, defaults to 0.0)
|
# Dim inactive windows. (0.0 - 1.0, defaults to 0.0)
|
||||||
# inactive-dim = 0.0
|
# inactive-dim = 0.5
|
||||||
|
|
||||||
# Specify a list of conditions of windows that should never be considered focused.
|
# Specify a list of conditions of windows that should never be considered focused.
|
||||||
# focus-exclude = []
|
# focus-exclude = []
|
||||||
|
@ -150,9 +150,9 @@ rounded-corners-exclude = [
|
||||||
|
|
||||||
# Parameters for background blurring, see the *BLUR* section for more information.
|
# Parameters for background blurring, see the *BLUR* section for more information.
|
||||||
blur-method = "dual_kawase"
|
blur-method = "dual_kawase"
|
||||||
blur-size = 12
|
blur-size = 14
|
||||||
blur-deviation = true
|
blur-deviation = true
|
||||||
blur-strength = 7
|
blur-strength = 3
|
||||||
|
|
||||||
# Blur background of semi-transparent / ARGB windows.
|
# Blur background of semi-transparent / ARGB windows.
|
||||||
# Bad in performance, with driver-dependent behavior.
|
# Bad in performance, with driver-dependent behavior.
|
||||||
|
@ -204,7 +204,7 @@ vsync = true;
|
||||||
mark-wmwin-focused = true;
|
mark-wmwin-focused = true;
|
||||||
|
|
||||||
# Mark override-redirect windows that doesn't have a child window with 'WM_STATE' focused.
|
# Mark override-redirect windows that doesn't have a child window with 'WM_STATE' focused.
|
||||||
mark-ovredir-focused = true;
|
mark-ovredir-focused = false;
|
||||||
|
|
||||||
# Try to detect windows with rounded corners and don't consider them
|
# Try to detect windows with rounded corners and don't consider them
|
||||||
# shaped windows. The accuracy is not very high, unfortunately.
|
# shaped windows. The accuracy is not very high, unfortunately.
|
||||||
|
|
0
picom.conf
Normal file
0
picom.conf
Normal file
|
@ -113,7 +113,7 @@ char *termname = "st-256color";
|
||||||
unsigned int tabspaces = 2;
|
unsigned int tabspaces = 2;
|
||||||
|
|
||||||
/* bg opacity */
|
/* bg opacity */
|
||||||
float alpha = 0.3;
|
float alpha = 0.8;
|
||||||
|
|
||||||
/* Terminal colors (16 first used in escape sequence) */
|
/* Terminal colors (16 first used in escape sequence) */
|
||||||
static const char *colorname[] = {
|
static const char *colorname[] = {
|
||||||
|
|
Reference in a new issue