Update themes

This commit is contained in:
o9000
2017-09-02 14:21:59 +02:00
parent a9047947b0
commit 64a0bf67db
13 changed files with 257 additions and 78 deletions

16
test/manual-theme-check.sh Executable file
View File

@@ -0,0 +1,16 @@
#!/bin/bash
echo -e '\033kTerminal\033\\'
echo "" > ../../tint2.wiki/screenshots.md
for f in ../themes/*tint2rc
do
reset
echo $f
name=$(basename -s .tint2rc $f)
( ( sleep 1 ; import -window tint2 ../../tint2.wiki/screenshots/${name}.png ; echo "Screenshot taken for ${name}!" ) &)
../build/tint2 -c $f
sleep 1
echo "![${name}](screenshots/${name})\n" >> ../../tint2.wiki/screenshots.md
done