diff options
Diffstat (limited to 'modules/bar.tsx')
| -rw-r--r-- | modules/bar.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/bar.tsx b/modules/bar.tsx index b8e9f0b..933fa5e 100644 --- a/modules/bar.tsx +++ b/modules/bar.tsx @@ -7,6 +7,7 @@ import AstalNetwork from "gi://AstalNetwork"; import AstalNotifd from "gi://AstalNotifd"; import AstalTray from "gi://AstalTray"; import { bar as config } from "../config"; +import type { Monitor } from "../services/monitors"; import Players from "../services/players"; import Updates from "../services/updates"; import { getAppCategoryIcon } from "../utils/icons"; @@ -396,7 +397,7 @@ const Power = () => ( /> ); -export default ({ monitor }: { monitor: AstalHyprland.Monitor }) => ( +export default ({ monitor }: { monitor: Monitor }) => ( <window namespace="caelestia-bar" monitor={monitor.id} |