diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-01-16 16:35:37 +1100 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-01-16 16:35:37 +1100 |
| commit | 02fd2e97f2c8a53bf2344e6fa8b14769cb15ee38 (patch) | |
| tree | 5e2a56becf6ba6961995e541ce9688224f704773 /app.tsx | |
| parent | popupwindow: switch to class (diff) | |
| download | caelestia-shell-02fd2e97f2c8a53bf2344e6fa8b14769cb15ee38.tar.gz caelestia-shell-02fd2e97f2c8a53bf2344e6fa8b14769cb15ee38.tar.bz2 caelestia-shell-02fd2e97f2c8a53bf2344e6fa8b14769cb15ee38.zip | |
refactor: move ts to src
Also move popupwindow to own file
Diffstat (limited to 'app.tsx')
| -rw-r--r-- | app.tsx | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -1,11 +1,11 @@ import { execAsync, GLib, writeFileAsync } from "astal"; import { App } from "astal/gtk3"; -import Bar from "./modules/bar"; -import Launcher from "./modules/launcher"; -import NotifPopups from "./modules/notifpopups"; -import Osds from "./modules/osds"; -import Monitors from "./services/monitors"; -import Players from "./services/players"; +import Bar from "./src/modules/bar"; +import Launcher from "./src/modules/launcher"; +import NotifPopups from "./src/modules/notifpopups"; +import Osds from "./src/modules/osds"; +import Monitors from "./src/services/monitors"; +import Players from "./src/services/players"; const loadStyleAsync = async () => { if (!GLib.file_test(`${SRC}/scss/scheme/_index.scss`, GLib.FileTest.EXISTS)) |