begun making my home-manager config modular

This commit is contained in:
Emile Clark-Boman 2024-11-10 23:10:51 +10:00
parent 97b344eb03
commit 4fcc76a32c
23 changed files with 1586 additions and 947 deletions

15
homes/me/ags/config.js Normal file
View file

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