From 205ad37e3ebb6befb55ef489b44e3560c6a0f40e Mon Sep 17 00:00:00 2001 From: Benjamin Palko Date: Fri, 5 Sep 2025 17:33:48 -0400 Subject: [PATCH] only watch theme files --- config/Theme.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/Theme.qml b/config/Theme.qml index 82c316a..e54b66e 100644 --- a/config/Theme.qml +++ b/config/Theme.qml @@ -16,7 +16,7 @@ Singleton { Process { running: true - command: ["bash", "-c", `inotifywait -m -r ~/.config/lux -e modify,move,create,delete | while read dir action; do ls -m "$dir"; done`] + command: ["bash", "-c", `inotifywait -m -r ~/.config/lux/themes/ -e modify,move,create,delete | while read dir action; do ls -m "$dir"; done`] stderr: StdioCollector { onStreamFinished: console.log(`line read: ${this.text}`) }