7 lines
234 B
Plaintext
7 lines
234 B
Plaintext
|
#!/bin/sh
|
||
|
while :; do
|
||
|
rm -r ~/.themes/* 2> /dev/null
|
||
|
rsync -av --progress /usr/share/themes/* ~/.themes/ --exclude Windowck
|
||
|
rsync -av --progress ~/.local/share/themes/* ~/.themes/ --exclude Windowck-dark
|
||
|
sleep 600
|
||
|
done
|