From fac575fc59bf433d5213eb83e8cb8ff174c08f5f Mon Sep 17 00:00:00 2001 From: Malin Freeborn Date: Sun, 10 Sep 2023 18:22:18 +0200 Subject: [PATCH] add void wallpaper nonsense --- distros/void/Brand_Name_Wallpaper.md | 33 ++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 distros/void/Brand_Name_Wallpaper.md diff --git a/distros/void/Brand_Name_Wallpaper.md b/distros/void/Brand_Name_Wallpaper.md new file mode 100644 index 0000000..a30f8a1 --- /dev/null +++ b/distros/void/Brand_Name_Wallpaper.md @@ -0,0 +1,33 @@ +--- +title: "Brand Name Wallpaper" +tags: [ "void" ] +--- + +To automatically stick the logo onto your background, do these commands in the directory. + +Get the void linux logo from wikipedia + +```bash +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) + +```bash +convert -resize 200% '256px-Void_Linux_logo.svg.png?20170131170632' void-logo.png +``` +Download a pretty wallpaper + +```bash +wget http://wallpapercave.com/wp/Wlm9Gv0.jpg +``` + +Put the void logo on all *jpg and *png images + +```bash +for x in *.jpg + do + composite -compose multiply -gravity Center void-logo.png "$x" "$x" +done +``` +