summaryrefslogtreecommitdiff
path: root/app.tsx
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-01-16 22:29:13 +1100
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-01-16 22:29:13 +1100
commit9e32cd4b61b7a22554d1ac046d685a916a926f3f (patch)
tree628a57f8375630c35b4002831a3fa61534913ea4 /app.tsx
parentnotifications: empty text (diff)
downloadcaelestia-shell-9e32cd4b61b7a22554d1ac046d685a916a926f3f.tar.gz
caelestia-shell-9e32cd4b61b7a22554d1ac046d685a916a926f3f.tar.bz2
caelestia-shell-9e32cd4b61b7a22554d1ac046d685a916a926f3f.zip
updates: make popup window
Diffstat (limited to 'app.tsx')
-rw-r--r--app.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/app.tsx b/app.tsx
index 708532f..9743792 100644
--- a/app.tsx
+++ b/app.tsx
@@ -5,6 +5,7 @@ import Launcher from "./src/modules/launcher";
import Notifications from "./src/modules/notifications";
import NotifPopups from "./src/modules/notifpopups";
import Osds from "./src/modules/osds";
+import Updates from "./src/modules/updates";
import Monitors from "./src/services/monitors";
import Players from "./src/services/players";
@@ -26,6 +27,7 @@ App.start({
<Osds />;
Monitors.get_default().forEach(m => <Bar monitor={m} />);
<Notifications />;
+ <Updates />;
console.log("Caelestia started");
},