Update 'bin/periodic/fix-flatpaks-theming'

This commit is contained in:
Tio TROM 2022-09-18 19:52:31 +02:00
parent 4d0deb3361
commit 5a66e4038e
1 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,5 @@
#!/bin/sh
while inotifywait -r /usr/share/themes/; do
rsync -az ~/.themes/ /target
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
done