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/popdowns/sideright.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/popdowns/sideright.tsx')
| -rw-r--r-- | src/modules/popdowns/sideright.tsx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/modules/popdowns/sideright.tsx b/src/modules/popdowns/sideright.tsx index ac2845a..d5ee9d5 100644 --- a/src/modules/popdowns/sideright.tsx +++ b/src/modules/popdowns/sideright.tsx @@ -1,10 +1,10 @@ +import SWeather, { type WeatherData } from "@/services/weather"; +import { ellipsize } from "@/utils/strings"; +import { bindCurrentTime } from "@/utils/system"; +import { Calendar as WCal } from "@/utils/widgets"; +import PopupWindow from "@/widgets/popupwindow"; import { bind, timeout } from "astal"; import { Astal, Gtk, type Gdk } from "astal/gtk3"; -import SWeather, { type WeatherData } from "../../services/weather"; -import { ellipsize } from "../../utils/strings"; -import { bindCurrentTime } from "../../utils/system"; -import { Calendar as WCal } from "../../utils/widgets"; -import PopupWindow from "../../widgets/popupwindow"; const getHoursFromUpdate = (data: WeatherData, hours: number) => { const updateTime = data.location.localtime_epoch; |