snowflake/home/ags/config/config.js

14 lines
281 B
JavaScript
Raw Normal View History

2023-11-28 12:43:33 -05:00
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] }