Files
custum-hyprpanel/modules/menus/media/index.ts
2024-07-26 23:11:33 -07:00

21 lines
460 B
TypeScript

import DropdownMenu from "../DropdownMenu.js";
import { Media } from "./media.js";
export default () => {
return DropdownMenu({
name: "mediamenu",
transition: "crossfade",
child: Widget.Box({
class_name: "menu-items media",
hpack: "fill",
hexpand: true,
child: Widget.Box({
class_name: "menu-items-container media",
hpack: "fill",
hexpand: true,
child: Media(),
}),
}),
});
};