From 354e420aaf8f4a4a44b5c6ec6ef12efbee779bb0 Mon Sep 17 00:00:00 2001 From: Astatin3 <77305074+Astatin3@users.noreply.github.com> Date: Mon, 11 Mar 2024 11:37:49 -0600 Subject: [PATCH] Update neofetch.py --- neofetch.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/neofetch.py b/neofetch.py index 88d6450..895a20b 100644 --- a/neofetch.py +++ b/neofetch.py @@ -87,22 +87,22 @@ mask.paste(icon, (round(iconoffsetX*screenX+screenX/2), round(iconoffsetY*screen # Outline mask2 = Image.new('RGBA', (screenX, screenY),(0, 0, 0, 0)) -d = 1 +d = 2 mask2.paste(mask, (d, d), mask) -mask2.paste(mask, (d, -d), mask) -mask2.paste(mask, (-d, d), mask) -mask2.paste(mask, (-d, -d), mask) +#mask2.paste(mask, (d, -d), mask) +#mask2.paste(mask, (-d, d), mask) +#mask2.paste(mask, (-d, -d), mask) mask2.paste(mask, (d, 0), mask) -mask2.paste(mask, (-d, 0), mask) +#mask2.paste(mask, (-d, 0), mask) mask2.paste(mask, (0, d), mask) -mask2.paste(mask, (0, -d), mask) +#mask2.paste(mask, (0, -d), mask) -wallpaper = Image.composite(invertImg, img, mask2) -wallpaper = Image.composite(img, wallpaper, mask) +wallpaper = Image.composite(blackImage, img, mask2) +wallpaper = Image.composite(solidColorImage, wallpaper, mask) wallpaper.save("/tmp/wallpaper.png") # img.save("/tmp/wallpaper.png")