From 50ebc3ae9881badaf827bad33ebfe723d9e68324 Mon Sep 17 00:00:00 2001 From: Simon Date: Thu, 23 Jan 2025 23:52:07 -0500 Subject: [PATCH] added blurr and fixed center aligned datetime --- i3blocks.conf | 2 +- picom.conf | 32 +++++++++++++++++++++----------- 2 files changed, 22 insertions(+), 12 deletions(-) diff --git a/i3blocks.conf b/i3blocks.conf index f32c5fb..c328d28 100644 --- a/i3blocks.conf +++ b/i3blocks.conf @@ -17,7 +17,7 @@ interval=1 color=#c0caf5 [padding] -command=echo ' ' +command=echo ' ' interval=once [weather] diff --git a/picom.conf b/picom.conf index db60b5f..012dd05 100644 --- a/picom.conf +++ b/picom.conf @@ -1,24 +1,34 @@ +# EXAMPLE CONFIG AT : /etc/xdg/picom.conf backend = "xrender" -# Disable background blur; search picom.conf for Background-Blurring for details -blur-background = true; -# Disable background blur; search picom.conf for Shadows for details +# BLURRRRR +blur: +{ + method = "box"; + size = 10; + strength = 7; + background = false; + background-fixed = true; +}; + shadow = true; -# Disable window fading; search picom.conf for Fading for details fading = false; -# Disable rounded window corners; search picom.conf for Corners for details -corner-radius = 15; +# ROUNDER EDGES +corner-radius = 15; +rounded-corners-exclude = [ + "class_g = 'i3bar'" + ]; -# Defaults +# OPACITYYY inactive-opacity = 0.75; active-opacity = 1; - opacity-rule = [ - "80:class_g = 'Sakura' && focused", + "85:class_g = 'Sakura' && focused", "60:class_g = 'Sakura' && !focused", "80:class_g = 'Conky' && focused", - "60:class_g = 'Conky' && !focused" -]; + "60:class_g = 'Conky' && !focused", + "90:class_g = 'WebCord'" + ];