Files
custum-hyprpanel/modules/menus/media/index.ts
Jas Singh 14654998ea Clean up media module logic and code. (#380)
* Organized media menu code

* More consolidation
2024-10-27 00:17:51 -07:00

24 lines
751 B
TypeScript

import Window from 'types/widgets/window.js';
import DropdownMenu from '../shared/dropdown/index.js';
import { Media } from './components/index.js';
import { Attribute, Child } from 'lib/types/widget.js';
import options from 'options.js';
export default (): Window<Child, Attribute> => {
return DropdownMenu({
name: 'mediamenu',
transition: options.menus.transition.bind('value'),
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(),
}),
}),
});
};