Files
alpm-hooks
bin
periodic
fix-flatpaks-theming
fix-theming
fix-tweaked-desktop-files
standalone
flatpak-overrides
Makefile
PKGBUILD
README.md
fixes-package/bin/periodic/fix-flatpaks-theming
2022-09-16 03:31:21 +02:00

7 lines
234 B
Bash
Executable File

#!/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