feat(ags): init gtk4 migration attempt

This commit is contained in:
matt1432 2024-12-31 23:54:29 -05:00
parent 458dc14eef
commit dc410ebf59
11 changed files with 2359 additions and 22 deletions
modules/ags/gtk4

15
modules/ags/gtk4/app.ts Normal file
View file

@ -0,0 +1,15 @@
import { App } from 'astal/gtk4';
import style from './style.scss';
import Bar from './widget/Bar';
App.start({
css: style,
instanceName: 'gtk4',
main() {
Bar();
},
});