11 lines
188 B
TypeScript
11 lines
188 B
TypeScript
import { App } from "astal/gtk3";
|
|
import style from "./style.scss";
|
|
import Agenda from "./widget/Agenda";
|
|
|
|
App.start({
|
|
css: style,
|
|
main() {
|
|
Agenda(App.get_monitors()[0]);
|
|
},
|
|
});
|