Upload files to ".config/picom"
parent
a88e0c5dd4
commit
a4546b214b
|
@ -0,0 +1,30 @@
|
|||
# Start picom as a daemon process
|
||||
# Default opacity of active windows.
|
||||
active-opacity = 1.5;
|
||||
|
||||
# Default opacity of inactive windows.
|
||||
inactive-opacity = 1.5;
|
||||
|
||||
# Opacity of window titlebars and borders.
|
||||
frame-opacity = 0.5;
|
||||
|
||||
# Application-specific settings; these override the default `active-opacity`
|
||||
opacity-rule = [
|
||||
"80:class_g = 'Alacritty' && focused",
|
||||
"40:class_g = 'Alacritty' && !focused"
|
||||
];
|
||||
# Application-specific settings; these override the default `active-opacity`
|
||||
opacity-rule = [
|
||||
# Makes Alacritty 80% opaque when focused...
|
||||
"80:class_g = 'Alacritty' && focused",
|
||||
# ... and 60% opaque when not focused.
|
||||
"60:class_g = 'Alacritty' && !focused",
|
||||
];
|
||||
# Search picom.conf for "General Settings"
|
||||
backend = "glx";
|
||||
glx-no-stencil = true;
|
||||
|
||||
# Search picom.conf for "Background-Blurring"
|
||||
blur-background = true;
|
||||
blur-method = "dual_kawase";
|
||||
# Set blur-size, blur-strength, and other settings as needed.
|
Loading…
Reference in New Issue