summaryrefslogtreecommitdiff
path: root/app.tsx
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-01-16 16:35:37 +1100
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-01-16 16:35:37 +1100
commit02fd2e97f2c8a53bf2344e6fa8b14769cb15ee38 (patch)
tree5e2a56becf6ba6961995e541ce9688224f704773 /app.tsx
parentpopupwindow: switch to class (diff)
downloadcaelestia-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.tsx12
1 files changed, 6 insertions, 6 deletions
diff --git a/app.tsx b/app.tsx
index be3231c..31e7ed1 100644
--- a/app.tsx
+++ b/app.tsx
@@ -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))