summaryrefslogtreecommitdiff
path: root/src/modules/launcher.tsx
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-01-30 21:31:58 +1100
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-01-30 21:31:58 +1100
commit47db47fe9fe7a33109366614de0f1b6402814c84 (patch)
tree9850e712fa97cf897b14e88cb5a54f5f15cf980e /src/modules/launcher.tsx
parentsideleft: create popdown window (diff)
downloadcaelestia-shell-47db47fe9fe7a33109366614de0f1b6402814c84.tar.gz
caelestia-shell-47db47fe9fe7a33109366614de0f1b6402814c84.tar.bz2
caelestia-shell-47db47fe9fe7a33109366614de0f1b6402814c84.zip
imports: use typescript import paths
Diffstat (limited to 'src/modules/launcher.tsx')
-rw-r--r--src/modules/launcher.tsx16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/modules/launcher.tsx b/src/modules/launcher.tsx
index 9db219e..8949444 100644
--- a/src/modules/launcher.tsx
+++ b/src/modules/launcher.tsx
@@ -1,16 +1,16 @@
+import { Apps } from "@/services/apps";
+import MathService, { type HistoryItem } from "@/services/math";
+import { getAppCategoryIcon } from "@/utils/icons";
+import { launch, notify } from "@/utils/system";
+import type { Client } from "@/utils/types";
+import { MenuItem, setupCustomTooltip } from "@/utils/widgets";
+import PopupWindow from "@/widgets/popupwindow";
import { bind, execAsync, Gio, GLib, readFile, register, timeout, Variable } from "astal";
import { App, Astal, Gtk, Widget } from "astal/gtk3";
+import { launcher as config } from "config";
import fuzzysort from "fuzzysort";
import type AstalApps from "gi://AstalApps";
import AstalHyprland from "gi://AstalHyprland";
-import { launcher as config } from "../../config";
-import { Apps } from "../services/apps";
-import MathService, { type HistoryItem } from "../services/math";
-import { getAppCategoryIcon } from "../utils/icons";
-import { launch, notify } from "../utils/system";
-import type { Client } from "../utils/types";
-import { MenuItem, setupCustomTooltip } from "../utils/widgets";
-import PopupWindow from "../widgets/popupwindow";
type Mode = "apps" | "files" | "math" | "windows";