From ea9b6b9dc3d3e4fd92018dfaf920b1b3010e81a9 Mon Sep 17 00:00:00 2001 From: Stephan Raabe Date: Fri, 8 Mar 2024 10:31:55 +0100 Subject: [PATCH] Updates --- hypr/scripts/wallpaper.sh | 2 +- qtile/scripts/wallpaper.sh | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/hypr/scripts/wallpaper.sh b/hypr/scripts/wallpaper.sh index 8b9052a..20c9149 100755 --- a/hypr/scripts/wallpaper.sh +++ b/hypr/scripts/wallpaper.sh @@ -95,7 +95,7 @@ swww img $wallpaper \ # ----------------------------------------------------- magick $wallpaper -resize 50% $blurred echo ":: Resized to 50%" -magick $blurred -blur 0x20 $blurred +magick $blurred -blur 50x30 $blurred echo ":: Blurred" # ----------------------------------------------------- diff --git a/qtile/scripts/wallpaper.sh b/qtile/scripts/wallpaper.sh index 407b6be..f40b8b4 100755 --- a/qtile/scripts/wallpaper.sh +++ b/qtile/scripts/wallpaper.sh @@ -74,8 +74,10 @@ newwall=$(echo $wallpaper | sed "s|$HOME/wallpaper/||g") # ----------------------------------------------------- # Created blurred wallpaper # ----------------------------------------------------- -magick $wallpaper -blur 0x20 $blurred - +magick $wallpaper -resize 50% $blurred +echo ":: Resized to 50%" +magick $blurred -blur 50x30 $blurred +echo ":: Blurred" # ----------------------------------------------------- # Write selected wallpaper into .cache files # -----------------------------------------------------