Add blur to transparent windows
Signed-off-by: Severin Kaderli <severin@kaderli.dev>
This commit is contained in:
parent
227fe87770
commit
33aaca49ba
5 changed files with 15 additions and 7 deletions
|
@ -228,7 +228,7 @@ visual_bell:
|
||||||
#
|
#
|
||||||
# Window opacity as a floating point number from `0.0` to `1.0`.
|
# Window opacity as a floating point number from `0.0` to `1.0`.
|
||||||
# The value `0.0` is completely transparent and `1.0` is opaque.
|
# The value `0.0` is completely transparent and `1.0` is opaque.
|
||||||
background_opacity: 0.75
|
background_opacity: 0.5
|
||||||
|
|
||||||
# Mouse bindings
|
# Mouse bindings
|
||||||
#
|
#
|
||||||
|
|
|
@ -12,13 +12,20 @@
|
||||||
|
|
||||||
# Settings opacity rules
|
# Settings opacity rules
|
||||||
opacity-rule = [
|
opacity-rule = [
|
||||||
"85:class_g = 'Nemo'",
|
"75:class_g = 'Nemo'",
|
||||||
"85:class_g = 'Thunar'"
|
"75:class_g = 'Thunar'"
|
||||||
];
|
];
|
||||||
|
|
||||||
# Shadows
|
# Shadows
|
||||||
shadow = true;
|
shadow = true;
|
||||||
|
|
||||||
|
blur:
|
||||||
|
{
|
||||||
|
method = "gaussian";
|
||||||
|
size = 10;
|
||||||
|
deviation = 5.0;
|
||||||
|
};
|
||||||
|
|
||||||
# Performance improvements
|
# Performance improvements
|
||||||
unredir-if-possible = true;
|
unredir-if-possible = true;
|
||||||
backend = "glx";
|
backend = "glx";
|
||||||
|
|
|
@ -20,7 +20,7 @@ exec --no-startup-id "i3-msg 'workspace 1: '"
|
||||||
# Startup applications #
|
# Startup applications #
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# Start compton
|
# Start compton
|
||||||
exec --no-startup-id compton -b
|
exec --no-startup-id compton -b --experimental-backends
|
||||||
|
|
||||||
# Start dunst
|
# Start dunst
|
||||||
exec --no-startup-id dunst
|
exec --no-startup-id dunst
|
||||||
|
|
|
@ -14,7 +14,7 @@ exec --no-startup-id "i3-msg 'workspace 1: '"
|
||||||
# Startup applications #
|
# Startup applications #
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# Start compton
|
# Start compton
|
||||||
exec --no-startup-id compton -b
|
exec --no-startup-id compton -b --experimental-backends
|
||||||
|
|
||||||
# Start dunst
|
# Start dunst
|
||||||
exec --no-startup-id dunst
|
exec --no-startup-id dunst
|
||||||
|
|
|
@ -15,8 +15,9 @@
|
||||||
#######################################
|
#######################################
|
||||||
[settings]
|
[settings]
|
||||||
padding = 4
|
padding = 4
|
||||||
background-color = #BF080808
|
# 60% alpha
|
||||||
foreground-color = #BFA1B0B8
|
background-color = #99080808
|
||||||
|
foreground-color = #99A1B0B8
|
||||||
bar-height = 35
|
bar-height = 35
|
||||||
|
|
||||||
#######################################
|
#######################################
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue