diff --git a/.config/picom/picom.conf b/.config/picom/picom.conf new file mode 100644 index 0000000..007373b --- /dev/null +++ b/.config/picom/picom.conf @@ -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.