1
0
mirror of https://github.com/TeamNewPipe/Merchandise synced 2025-10-05 15:42:52 +02:00

Add conversion script for 36C3 advertising

This commit is contained in:
TheAssassin
2019-12-31 02:19:34 +01:00
parent 9479dff4a1
commit 3a95601bd6
2 changed files with 6 additions and 0 deletions

3
advertising/36C3/.gitignore vendored Normal file
View File

@@ -0,0 +1,3 @@
*.jpg
*.png
old/

3
advertising/36C3/convert.fish Executable file
View File

@@ -0,0 +1,3 @@
#! /usr/bin/fish
for i in *.svg; inkscape -e (basename "$i" .svg).png "$i"; convert (basename "$i" .svg).png (basename "$i" .svg).jpg; end