From 10b56e1e1be173c806a3a21403318db4a224d05a Mon Sep 17 00:00:00 2001 From: Zacharias-Brohn Date: Fri, 20 Mar 2026 13:54:12 +0100 Subject: [PATCH] fix no blur --- cli/src/zshell/subcommands/wallpaper.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cli/src/zshell/subcommands/wallpaper.py b/cli/src/zshell/subcommands/wallpaper.py index 946926d..558fe69 100644 --- a/cli/src/zshell/subcommands/wallpaper.py +++ b/cli/src/zshell/subcommands/wallpaper.py @@ -30,6 +30,10 @@ def lockscreen( ): img = Image.open(input_image) size = img.size + if (blur_amount == 0): + img.save(output_path, "PNG") + return + if (size[0] < 3840 or size[1] < 2160): img = img.resize((size[0] // 2, size[1] // 2), Image.NEAREST) else: