From b7219bbea7d9a4c715cb2c95fcdb1be7ab76d906 Mon Sep 17 00:00:00 2001
From: root <root@pimote.dsv.su.se>
Date: Tue, 8 Oct 2024 09:38:05 +0200
Subject: [PATCH] Automatically restarting window manager on changes

---
 sync-config.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sync-config.sh b/sync-config.sh
index 94276bf..ece9880 100755
--- a/sync-config.sh
+++ b/sync-config.sh
@@ -37,6 +37,7 @@ done < "$TMPFILE"
 if ! diff -N "$TMPCONF" "$CONFFILE" >/dev/null 2>&1; then
     mv "$TMPCONF" "$CONFFILE"
     service telldusd restart
+    service slim restart
 else
     rm "$TMPCONF"
 fi