From 38d633ad7fce97adcc045b437276c55068135f44 Mon Sep 17 00:00:00 2001 From: Malin Freeborn Date: Tue, 27 Jun 2023 23:49:55 +0200 Subject: [PATCH] include void background script --- distros/void/void-background.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 distros/void/void-background.sh diff --git a/distros/void/void-background.sh b/distros/void/void-background.sh new file mode 100755 index 0000000..83f4e86 --- /dev/null +++ b/distros/void/void-background.sh @@ -0,0 +1,13 @@ +#!/bin/sh +# get the void linux logo from wikipedia +wget https://upload.wikimedia.org/wikipedia/commons/thumb/0/02/Void_Linux_logo.svg/256px-Void_Linux_logo.svg.png?20170131170632 +# rename it, and resize it (the standard size is too small for most wallpapers) +convert -resize 200% '256px-Void_Linux_logo.svg.png?20170131170632' void-logo.png +# download a pretty wallpaper +wget http://wallpapercave.com/wp/Wlm9Gv0.jpg + +# put the void logo on all *jpg and *png images +for x in *.jpg + do + composite -compose multiply -gravity Center void-logo.png "$x" "$x" +done