29 lines
1.1 KiB
TypeScript
29 lines
1.1 KiB
TypeScript
import { Astal, Gtk } from "ags/gtk4";
|
|
import { QuickActions } from "../widget/control-center/QuickActions";
|
|
import { Tiles } from "../widget/control-center/Tiles";
|
|
import { Sliders } from "../widget/control-center/Sliders";
|
|
import { NotifHistory } from "../widget/control-center/NotifHistory";
|
|
import { PopupWindow } from "../widget/PopupWindow";
|
|
|
|
|
|
export const ControlCenter = (mon: number) =>
|
|
<PopupWindow namespace={"control-center"} class={"control-center"}
|
|
halign={Gtk.Align.END} valign={Gtk.Align.START} layer={Astal.Layer.OVERLAY}
|
|
marginTop={10} marginRight={10} marginBottom={10} monitor={mon}
|
|
widthRequest={395}>
|
|
|
|
<Gtk.Box orientation={Gtk.Orientation.VERTICAL}
|
|
spacing={16}>
|
|
|
|
<Gtk.Box class={"control-center-container"}
|
|
orientation={Gtk.Orientation.VERTICAL} vexpand={false}>
|
|
|
|
<QuickActions />
|
|
<Sliders />
|
|
<Tiles />
|
|
</Gtk.Box>
|
|
|
|
<NotifHistory />
|
|
</Gtk.Box>
|
|
</PopupWindow> as Astal.Window;
|