This commit is contained in:
Stephan Raabe 2024-03-17 18:21:55 +01:00
parent 001527ba1c
commit b96d97b70a
2 changed files with 1 additions and 12 deletions

View File

@ -10,15 +10,6 @@ background {
monitor =
path = $HOME/.cache/blurred_wallpaper.png # only png supported for now
color = rgba(25, 20, 20, 1.0)
# all these options are taken from hyprland, see https://wiki.hyprland.org/Configuring/Variables/#blur for explanations
blur_passes = 4 # 0 disables blurring
blur_size = 2
noise = 0.0117
contrast = 0.8916
brightness = 0.8172
vibrancy = 0.1696
vibrancy_darkness = 0.0
}
input-field {

View File

@ -97,9 +97,7 @@ swww img $wallpaper \
# -----------------------------------------------------
# Created blurred wallpaper
# -----------------------------------------------------
magick $wallpaper -resize 50% $blurred
echo ":: Resized to 50%"
magick $blurred -blur $blur $blurred
magick $wallpaper -blur $blur $blurred
echo ":: Blurred"
# -----------------------------------------------------