tint2/test/manual-theme-check.sh
2017-09-02 14:31:16 +02:00

17 lines
581 B
Bash
Executable file

#!/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 -e "### [${name}](https://gitlab.com/o9000/tint2/blob/master/themes/$(basename $f))\n" >> ../../tint2.wiki/screenshots.md
echo -e "![${name}](https://gitlab.com/o9000/tint2/wikis/screenshots/${name}.png)\n" >> ../../tint2.wiki/screenshots.md
done