diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-03-26 22:59:28 +1100 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-03-26 22:59:28 +1100 |
| commit | 17ddfc6fb1dc2ebb9b4ab0bbd3517ef7e1de97da (patch) | |
| tree | 9be24d9c93d30546ce89acc4ef359ff7de672dff /src/modules/sidebar/index.tsx | |
| parent | sidebar: fix dashboard media types (diff) | |
| download | caelestia-shell-17ddfc6fb1dc2ebb9b4ab0bbd3517ef7e1de97da.tar.gz caelestia-shell-17ddfc6fb1dc2ebb9b4ab0bbd3517ef7e1de97da.tar.bz2 caelestia-shell-17ddfc6fb1dc2ebb9b4ab0bbd3517ef7e1de97da.zip | |
sidebar: media pane
Diffstat (limited to 'src/modules/sidebar/index.tsx')
| -rw-r--r-- | src/modules/sidebar/index.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/modules/sidebar/index.tsx b/src/modules/sidebar/index.tsx index 5b9a3a3..5ae7670 100644 --- a/src/modules/sidebar/index.tsx +++ b/src/modules/sidebar/index.tsx @@ -2,6 +2,7 @@ import type { Monitor } from "@/services/monitors"; import { bind, idle, register, Variable } from "astal"; import { App, Astal, Gdk, Gtk, Widget } from "astal/gtk3"; import { sidebar as config } from "config"; +import Audio from "./audio"; import Connectivity from "./connectivity"; import Dashboard from "./dashboard"; import NotifPane from "./notifpane"; @@ -21,7 +22,7 @@ export default class SideBar extends Widget.Window { visible: false, }); - const panes = [<Dashboard />, <Connectivity />, <NotifPane />]; + const panes = [<Dashboard />, <Audio />, <Connectivity />, <NotifPane />]; this.shown = Variable(panes[0].name); this.add( |