tint2/test/manual-theme-check.sh

18 lines
581 B
Bash
Raw Normal View History

2017-09-02 12:21:59 +00:00
#!/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
2017-09-02 12:31:16 +00:00
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
2017-09-02 12:21:59 +00:00
done