diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-01-15 20:58:01 +1100 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-01-15 20:58:01 +1100 |
| commit | 751ad07e151f0abfd111c4d800d172f726ffa33c (patch) | |
| tree | 84c2d1485ecb6dea6c02d67bf5302d7d90e69ce6 /modules/bar.tsx | |
| parent | launcher: math derive short form + help (diff) | |
| download | caelestia-shell-751ad07e151f0abfd111c4d800d172f726ffa33c.tar.gz caelestia-shell-751ad07e151f0abfd111c4d800d172f726ffa33c.tar.bz2 caelestia-shell-751ad07e151f0abfd111c4d800d172f726ffa33c.zip | |
brightness and volume osds
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} |