12 lines
221 B
TypeScript
12 lines
221 B
TypeScript
import { App } from "astal/gtk3";
|
|
import style from "./style.scss";
|
|
import Bar from "./widget/Bar";
|
|
import Agenda from "./widget/Agenda";
|
|
|
|
App.start({
|
|
css: style,
|
|
main() {
|
|
App.get_monitors().map(Agenda);
|
|
},
|
|
});
|