diff --git a/hypr/hyprlock.conf b/hypr/hyprlock.conf index b2a9ba6..55fd9d5 100644 --- a/hypr/hyprlock.conf +++ b/hypr/hyprlock.conf @@ -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 { diff --git a/hypr/scripts/wallpaper.sh b/hypr/scripts/wallpaper.sh index 71fa520..5695d81 100755 --- a/hypr/scripts/wallpaper.sh +++ b/hypr/scripts/wallpaper.sh @@ -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" # -----------------------------------------------------