* Added the ability to change bar locations. * Update dropdown margins * Make dropdown to bar gap configurable and organized code.
25 lines
816 B
TypeScript
25 lines
816 B
TypeScript
import Window from 'types/widgets/window.js';
|
|
import DropdownMenu from '../shared/dropdown/index.js';
|
|
import { activeDevices } from './active/index.js';
|
|
import { availableDevices } from './available/index.js';
|
|
import { Attribute, Child } from 'lib/types/widget.js';
|
|
|
|
export default (): Window<Child, Attribute> => {
|
|
return DropdownMenu({
|
|
name: 'audiomenu',
|
|
transition: 'crossfade',
|
|
child: Widget.Box({
|
|
class_name: 'menu-items audio',
|
|
hpack: 'fill',
|
|
hexpand: true,
|
|
child: Widget.Box({
|
|
vertical: true,
|
|
hpack: 'fill',
|
|
hexpand: true,
|
|
class_name: 'menu-items-container audio',
|
|
children: [activeDevices(), availableDevices()],
|
|
}),
|
|
}),
|
|
});
|
|
};
|