10 lines
195 B
TypeScript
10 lines
195 B
TypeScript
import { App } from "astal/gtk3"
|
|
import style from "./style.scss"
|
|
import Applauncher from "./ui/AppLauncher"
|
|
|
|
App.start({
|
|
instanceName: "launcher",
|
|
css: style,
|
|
main: Applauncher,
|
|
});
|