diff options
Diffstat (limited to '')
| -rw-r--r-- | src/modules/launcher.tsx (renamed from modules/launcher.tsx) | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/launcher.tsx b/src/modules/launcher.tsx index 966cdfd..2fc6eef 100644 --- a/modules/launcher.tsx +++ b/src/modules/launcher.tsx @@ -3,12 +3,13 @@ import { Astal, Gtk, Widget } from "astal/gtk3"; import fuzzysort from "fuzzysort"; import type AstalApps from "gi://AstalApps"; import AstalHyprland from "gi://AstalHyprland"; -import { launcher as config } from "../config"; +import { launcher as config } from "../../config"; import { Apps } from "../services/apps"; import Math, { type HistoryItem } from "../services/math"; import { getAppCategoryIcon } from "../utils/icons"; import { launch } from "../utils/system"; -import { PopupWindow, setupCustomTooltip } from "../utils/widgets"; +import { setupCustomTooltip } from "../utils/widgets"; +import PopupWindow from "../widgets/popupwindow"; type Mode = "apps" | "files" | "math"; |