diff options
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; |