Files
custum-hyprpanel/modules/menus/bluetooth/index.js
2024-07-20 16:21:52 -07:00

22 lines
508 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 bluetooth",
hpack: "fill",
hexpand: true,
child: Widget.Box({
vertical: true,
hpack: "fill",
hexpand: true,
class_name: "menu-items-container bluetooth",
child: Devices(),
}),
}),
});
};