snowflake/home/ags/config/config.js
2023-11-28 12:43:33 -05:00

13 lines
281 B
JavaScript

import Widget from 'resource:///com/github/Aylur/ags/widget.js';
const myLabel = Widget.Label({
label: 'some example content',
})
const myBar = Widget.Window({
name: 'bar',
anchor: ['top', 'left', 'right'],
child: myLabel,
})
export default { windows: [myBar] }