nixos-configs/modules/ags/astal/wim.ts

21 lines
390 B
TypeScript
Raw Normal View History

2024-03-22 23:31:37 -04:00
import Adw from 'gi://Adw';
App.config({
windows: () => [
Widget.Window({
name: 'test',
child: Widget.Box({
setup: (self) => {
self.toggleCssClass('base');
},
child: new Adw.SplitButton({
label: 'test',
}),
}),
}),
],
});