AGS/app.ts

11 lines
188 B
TypeScript
Raw Normal View History

2024-11-21 22:45:00 +07:00
import { App } from "astal/gtk3";
import style from "./style.scss";
import Agenda from "./widget/Agenda";
2024-11-21 10:01:26 +07:00
App.start({
2024-11-21 22:45:00 +07:00
css: style,
main() {
2024-11-22 22:31:33 +07:00
Agenda(App.get_monitors()[0]);
2024-11-21 22:45:00 +07:00
},
});