From adbd76f25478982993b11bde1f082927cb692f51 Mon Sep 17 00:00:00 2001 From: Berkeley Date: Sun, 4 Feb 2024 07:38:14 +0000 Subject: [PATCH] Upload files to ".config/picom" --- .config/picom/picom.conf | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .config/picom/picom.conf diff --git a/.config/picom/picom.conf b/.config/picom/picom.conf new file mode 100644 index 0000000..32d0828 --- /dev/null +++ b/.config/picom/picom.conf @@ -0,0 +1,30 @@ +# 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.