mirror of
https://github.com/zoriya/astal.git
synced 2026-06-05 19:04:20 +00:00
9 lines
169 B
TypeScript
9 lines
169 B
TypeScript
import { App } from "astal"
|
|
import style from "./style.scss"
|
|
import Bar from "./widget/Bar"
|
|
|
|
App.start({
|
|
css: style,
|
|
main: () => App.get_monitors().map(Bar),
|
|
})
|