5 temi per il Desktop LXQt

Mi sto cimentando nei file .qss dei temi, ecco i primi cinque risultati.
Per installare tutti insieme si può usare questo script:
#!/bin/bash
#check if root
if [ “$(id -u)” != “0” ]; then
echo “This script must be run as root” 1>&2
exit 1
fi
#check for git
hash git &> /dev/null
if [ $? -eq 1 ]; then
echo >&2 “Please install git to use this script”
exit 1
else
echo “Found git – ok”
fi
cd /tmp
for i in \
archlinux-dark \
silver \
black-red \
black-green \
icedo
echo “Downloading $i theme ………”
git clone -q https://github.com/stefonarch/$i
rm -rf $i/.gitcp -a $i /usr/share/lxqt/themes/
echo “LXQt theme ‘$i’ installed”
echo “+++++++++++++”
#cleanup
rm -rf $i
doneecho “Install finished”