summaryrefslogtreecommitdiff
path: root/app.tsx
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-01-16 23:20:39 +1100
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-01-16 23:20:39 +1100
commit6d5805e66204caa599a8a2996238adf7931cb95b (patch)
tree49855ba4e35506cb936ecef692386c4bd8603016 /app.tsx
parentbase popdown window (diff)
downloadcaelestia-shell-6d5805e66204caa599a8a2996238adf7931cb95b.tar.gz
caelestia-shell-6d5805e66204caa599a8a2996238adf7931cb95b.tar.bz2
caelestia-shell-6d5805e66204caa599a8a2996238adf7931cb95b.zip
refactor: move popdowns to own folder
And group them like osds
Diffstat (limited to 'app.tsx')
-rw-r--r--app.tsx6
1 files changed, 2 insertions, 4 deletions
diff --git a/app.tsx b/app.tsx
index 9743792..66cc1ca 100644
--- a/app.tsx
+++ b/app.tsx
@@ -2,10 +2,9 @@ import { execAsync, GLib, writeFileAsync } from "astal";
import { App } from "astal/gtk3";
import Bar from "./src/modules/bar";
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 Popdowns from "./src/modules/popdowns";
import Monitors from "./src/services/monitors";
import Players from "./src/services/players";
@@ -26,8 +25,7 @@ App.start({
<NotifPopups />;
<Osds />;
Monitors.get_default().forEach(m => <Bar monitor={m} />);
- <Notifications />;
- <Updates />;
+ <Popdowns />;
console.log("Caelestia started");
},