diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-01-12 23:00:18 +1100 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-01-12 23:00:18 +1100 |
| commit | 54a62679574db230fd72a5c7819d5f7715cf17c0 (patch) | |
| tree | d8b3761cba53a45179193f1b6c41cf0288bbf126 /app.tsx | |
| parent | bar (diff) | |
| download | caelestia-shell-54a62679574db230fd72a5c7819d5f7715cf17c0.tar.gz caelestia-shell-54a62679574db230fd72a5c7819d5f7715cf17c0.tar.bz2 caelestia-shell-54a62679574db230fd72a5c7819d5f7715cf17c0.zip | |
notification popups
Diffstat (limited to 'app.tsx')
| -rw-r--r-- | app.tsx | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -2,6 +2,7 @@ import { execAsync, GLib, writeFileAsync } from "astal"; import { App } from "astal/gtk3"; import AstalHyprland from "gi://AstalHyprland"; import Bar from "./modules/bar"; +import NotifPopups from "./modules/notifpopups"; const loadStyleAsync = async () => { if (!GLib.file_test(`${SRC}/scss/scheme/_index.scss`, GLib.FileTest.EXISTS)) @@ -12,9 +13,11 @@ const loadStyleAsync = async () => { App.start({ instanceName: "caelestia", icons: "assets/icons", + iconTheme: "Adwaita", main() { loadStyleAsync().catch(console.error); + <NotifPopups />; AstalHyprland.get_default().monitors.forEach(m => <Bar monitor={m} />); console.log("Caelestia started"); |