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/services/weather.ts | |
| 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/services/weather.ts')
| -rw-r--r-- | src/services/weather.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/services/weather.ts b/src/services/weather.ts index e57e7c4..8474198 100644 --- a/src/services/weather.ts +++ b/src/services/weather.ts @@ -1,6 +1,6 @@ +import { notify } from "@/utils/system"; import { execAsync, GLib, GObject, interval, property, readFileAsync, register, writeFileAsync } from "astal"; -import { weather as config } from "../../config"; -import { notify } from "../utils/system"; +import { weather as config } from "config"; export interface WeatherCondition { text: string; |