summaryrefslogtreecommitdiff
path: root/app.tsx
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-01-18 15:02:50 +1100
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-01-18 15:02:50 +1100
commitd9d12acb58e2b97deb8c7a657aee829ac0593d39 (patch)
treeb3c987fd51492a42f79caab81a652c99663e2f1c /app.tsx
parentbar: change style + fix scheme (diff)
downloadcaelestia-shell-d9d12acb58e2b97deb8c7a657aee829ac0593d39.tar.gz
caelestia-shell-d9d12acb58e2b97deb8c7a657aee829ac0593d39.tar.bz2
caelestia-shell-d9d12acb58e2b97deb8c7a657aee829ac0593d39.zip
app: monitor scheme file
Diffstat (limited to 'app.tsx')
-rw-r--r--app.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/app.tsx b/app.tsx
index e995182..46bc1a1 100644
--- a/app.tsx
+++ b/app.tsx
@@ -1,4 +1,4 @@
-import { execAsync, GLib, readFileAsync, writeFileAsync } from "astal";
+import { execAsync, GLib, monitorFile, readFileAsync, writeFileAsync } from "astal";
import { App } from "astal/gtk3";
import Bar from "./src/modules/bar";
import Launcher from "./src/modules/launcher";
@@ -25,6 +25,7 @@ App.start({
main() {
const now = Date.now();
loadStyleAsync().catch(console.error);
+ monitorFile(`${CACHE}/scheme/current.txt`, () => loadStyleAsync().catch(console.error));
<Launcher />;
<NotifPopups />;