From 5a66e4038e32988259fd12551b9b8a6ddd2c8eab Mon Sep 17 00:00:00 2001 From: Tio TROM Date: Sun, 18 Sep 2022 19:52:31 +0200 Subject: [PATCH] Update 'bin/periodic/fix-flatpaks-theming' --- bin/periodic/fix-flatpaks-theming | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bin/periodic/fix-flatpaks-theming b/bin/periodic/fix-flatpaks-theming index 672f2c7..0611477 100755 --- a/bin/periodic/fix-flatpaks-theming +++ b/bin/periodic/fix-flatpaks-theming @@ -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 \ No newline at end of file