include void background script
This commit is contained in:
parent
981778a891
commit
38d633ad7f
13
distros/void/void-background.sh
Executable file
13
distros/void/void-background.sh
Executable file
@ -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
|
Loading…
Reference in New Issue
Block a user