diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-01-16 23:20:39 +1100 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-01-16 23:20:39 +1100 |
| commit | 6d5805e66204caa599a8a2996238adf7931cb95b (patch) | |
| tree | 49855ba4e35506cb936ecef692386c4bd8603016 /app.tsx | |
| parent | base popdown window (diff) | |
| download | caelestia-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.tsx | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -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"); }, |