2022-09-15 23:14:20 +00:00
|
|
|
#!/bin/sh
|
2022-09-17 21:35:02 +00:00
|
|
|
pidof -sq -o %PPID -x "$(basename "$0")" && exit
|
2022-09-15 23:14:20 +00:00
|
|
|
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
|