41f42e74fe
Also clawsola theme updated to 0.3. Signed-off-by: Michal Cieslakiewicz <michal.cieslakiewicz@wp.pl>
18 lines
485 B
Bash
Executable File
18 lines
485 B
Bash
Executable File
#!/bin/bash
|
|
SRC=claws-mail
|
|
VERSION=3.17.8
|
|
set -x
|
|
wget -O ${SRC}-${VERSION}.tar.xz -c "https://www.claws-mail.org/download.php?file=releases/${SRC}-${VERSION}.tar.xz"
|
|
rm -rf themes && mkdir themes || exit 1
|
|
for i in A_Ducks_Claw \
|
|
Blaue_Klaue \
|
|
Coons_Blue \
|
|
Fugue \
|
|
Gnome \
|
|
Tango_1.2.1 \
|
|
clawsola-0.3 \
|
|
elementary \
|
|
gnome-brave; do
|
|
wget -O themes/claws-mail-theme_${i}.tar.gz "https://www.claws-mail.org/download.php?file=themes/png/claws-mail-theme_${i}.tar.gz"
|
|
done
|