Moved theming to a central location

This commit is contained in:
Michel Fedde 2025-04-25 19:34:44 +02:00
parent 1c6fec2a1f
commit 54ecbaea3c
13 changed files with 20 additions and 6 deletions

11
.config/theming/watch.sh Executable file
View file

@ -0,0 +1,11 @@
#!/bin/env sh
setupWatchers() {
inotifywait -e modify,create,delete -m -r "$HOME/.config/theming/applications" &
inotifywait -e modify,create,delete -m -r "$HOME/.config/theming/library" &
}
setupWatchers | while read line; do
echo "Recomiling..."
$HOME/.config/theming/compile.sh >/dev/null
done