2022-09-15 23:14:20 +00:00
|
|
|
#!/bin/sh
|
2022-09-18 17:52:31 +00:00
|
|
|
while inotifywait -r /usr/share/themes/ "$HOME/.local/share/themes/"; do
|
|
|
|
rsync -av --progress /usr/share/themes/* ~/.themes/ --exclude Windowck
|
|
|
|
rsync -av --progress "$HOME/.local/share/themes/*" ~/.themes/ --exclude Windowck-dark
|
2022-09-15 23:14:20 +00:00
|
|
|
done
|