Files
custum-hyprpanel/modules/menus/bluetooth/index.js
2024-06-30 16:46:09 -07:00

22 lines
498 B
JavaScript

import DropdownMenu from "../DropdownMenu.js";
import { Devices } from "./devices/index.js";
export default () => {
return DropdownMenu({
name: "bluetoothmenu",
transition: "crossfade",
child: Widget.Box({
class_name: "menu-items",
hpack: "fill",
hexpand: true,
child: Widget.Box({
vertical: true,
hpack: "fill",
hexpand: true,
class_name: "menu-items-container bluetooth",
child: Devices(),
}),
}),
});
};