mirror of
https://github.com/tuxdotrs/tpanel.git
synced 2025-10-10 21:01:54 +05:30
11 lines
203 B
TypeScript
11 lines
203 B
TypeScript
import { App } from "astal/gtk4";
|
|
import style from "./style.scss";
|
|
import windows from "./windows";
|
|
|
|
App.start({
|
|
css: style,
|
|
main() {
|
|
windows.map((win) => App.get_monitors().map(win));
|
|
},
|
|
});
|