dotfiles/homes/me/ags/config.js

16 lines
204 B
JavaScript
Raw Normal View History

const myLabel = Widget.Label({
label: 'Emillllle',
})
const myBar = Widget.Window({
name: 'bar',
anchor: ['top', 'left', 'right'],
child: myLabel,
})
App.config({
windows: [
myBar
]
})