31 lines
932 B
Plaintext
31 lines
932 B
Plaintext
# Start picom as a daemon process
|
|
# Default opacity of active windows.
|
|
active-opacity = 0.9;
|
|
|
|
# Default opacity of inactive windows.
|
|
inactive-opacity = 0.1;
|
|
|
|
# Opacity of window titlebars and borders.
|
|
frame-opacity = 0.1;
|
|
|
|
# Application-specific settings; these override the default `active-opacity`
|
|
opacity-rule = [
|
|
"95:class_g = 'Alacritty' && focused",
|
|
"80:class_g = 'Alacritty' && !focused"
|
|
];
|
|
# Application-specific settings; these override the default `active-opacity`
|
|
opacity-rule = [
|
|
# Makes Alacritty 95% opaque when focused...
|
|
"95:class_g = 'Alacritty' && focused",
|
|
# ... and 40% opaque when not focused.
|
|
"40: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.
|