added blurr and fixed center aligned datetime

This commit is contained in:
2025-01-23 23:52:07 -05:00
parent c2f645782f
commit 50ebc3ae98
2 changed files with 22 additions and 12 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ interval=1
color=#c0caf5 color=#c0caf5
[padding] [padding]
command=echo ' ' command=echo ' '
interval=once interval=once
[weather] [weather]
+20 -10
View File
@@ -1,24 +1,34 @@
# EXAMPLE CONFIG AT : /etc/xdg/picom.conf
backend = "xrender" 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; shadow = true;
# Disable window fading; search picom.conf for Fading for details
fading = false; fading = false;
# Disable rounded window corners; search picom.conf for Corners for details # ROUNDER EDGES
corner-radius = 15; corner-radius = 15;
rounded-corners-exclude = [
"class_g = 'i3bar'"
];
# Defaults # OPACITYYY
inactive-opacity = 0.75; inactive-opacity = 0.75;
active-opacity = 1; active-opacity = 1;
opacity-rule = [ opacity-rule = [
"80:class_g = 'Sakura' && focused", "85:class_g = 'Sakura' && focused",
"60:class_g = 'Sakura' && !focused", "60:class_g = 'Sakura' && !focused",
"80:class_g = 'Conky' && focused", "80:class_g = 'Conky' && focused",
"60:class_g = 'Conky' && !focused" "60:class_g = 'Conky' && !focused",
]; "90:class_g = 'WebCord'"
];