Compare commits

...

2 commits

Author SHA1 Message Date
f8ea73daf0
ags: change config
All checks were successful
flake check / check (push) Successful in 6m23s
fmt check / check (push) Successful in 40s
2023-11-28 12:44:03 -05:00
70bfeb1e68
ags: set temp config 2023-11-28 12:43:33 -05:00
4 changed files with 14 additions and 1 deletions

13
home/ags/config/config.js Normal file
View file

@ -0,0 +1,13 @@
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] }

View file

@ -1,6 +1,6 @@
_: { _: {
programs.ags = { programs.ags = {
enable = true; enable = true;
configDir = ./js; configDir = ./config;
}; };
} }