nixos-configs/modules/ags/gtk4/app.ts

16 lines
198 B
TypeScript
Raw Normal View History

2024-12-31 23:54:29 -05:00
import { App } from 'astal/gtk4';
import style from './style.scss';
import Bar from './widget/Bar';
App.start({
css: style,
instanceName: 'gtk4',
main() {
Bar();
},
});