diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-01-30 21:31:58 +1100 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-01-30 21:31:58 +1100 |
| commit | 47db47fe9fe7a33109366614de0f1b6402814c84 (patch) | |
| tree | 9850e712fa97cf897b14e88cb5a54f5f15cf980e /src/modules/launcher.tsx | |
| parent | sideleft: create popdown window (diff) | |
| download | caelestia-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.tsx | 16 |
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"; |