diff options
author | adam <56338480+adastx@users.noreply.github.com> | 2022-10-09 19:06:45 +0200 |
---|---|---|
committer | adam <56338480+adastx@users.noreply.github.com> | 2022-10-09 19:06:45 +0200 |
commit | fca693f36f179f3b9ced0c23b81c8a4f19509c69 (patch) | |
tree | 1555a360a955c232b142e539e6c03fd5256255fb /.config/picom | |
parent | c5af3a40c7853668f505889f1aa79c54b4b637eb (diff) |
picom: reduced inactive-dim and transparency
Diffstat (limited to '.config/picom')
-rw-r--r-- | .config/picom/picom.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.config/picom/picom.conf b/.config/picom/picom.conf index 7a4fd4b..136b6f7 100644 --- a/.config/picom/picom.conf +++ b/.config/picom/picom.conf @@ -13,7 +13,7 @@ frame-opacity = 1; inactive-opacity-override = false; # Dim inactive windows. (0.0 - 1.0) -inactive-dim = 0.03; +inactive-dim = 0.01; # Do not let dimness adjust based on window opacity. inactive-dim-fixed = true; # Blur background of transparent windows. Bad performance with X Render backend. GLX backend is preferred. @@ -43,7 +43,7 @@ opacity-rule = [ "100:_NET_WM_STATE@[2]:32a = '_NET_WM_STATE_FULLSCREEN'", "100:_NET_WM_STATE@[3]:32a = '_NET_WM_STATE_FULLSCREEN'", "100:_NET_WM_STATE@[4]:32a = '_NET_WM_STATE_FULLSCREEN'", - "90:class_g = 'Alacritty' && !focused" + "95:class_g = 'Alacritty' && !focused" ]; |