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/osds.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/osds.tsx')
| -rw-r--r-- | src/modules/osds.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/osds.tsx b/src/modules/osds.tsx index a87fcc3..f95053e 100644 --- a/src/modules/osds.tsx +++ b/src/modules/osds.tsx @@ -1,13 +1,13 @@ +import Monitors, { type Monitor } from "@/services/monitors"; +import PopupWindow from "@/widgets/popupwindow"; import { execAsync, register, timeout, Variable, type Time } from "astal"; import { App, Astal, Gtk, Widget } from "astal/gtk3"; import cairo from "cairo"; +import { osds as config } from "config"; import AstalWp from "gi://AstalWp"; import Cairo from "gi://cairo"; import Pango from "gi://Pango"; import PangoCairo from "gi://PangoCairo"; -import { osds as config } from "../../config"; -import Monitors, { type Monitor } from "../services/monitors"; -import PopupWindow from "../widgets/popupwindow"; const getStyle = (context: Gtk.StyleContext, prop: string) => context.get_property(prop, Gtk.StateFlags.NORMAL); const getNumStyle = (context: Gtk.StyleContext, prop: string) => getStyle(context, prop) as number; |