summaryrefslogtreecommitdiff
path: root/examples/js/applauncher/app.ts
diff options
context:
space:
mode:
authorAylur <[email protected]>2024-11-07 02:40:47 +0000
committerAylur <[email protected]>2024-11-07 02:40:47 +0000
commit779ec440e209b01d3a44f9377af78653d197fdc8 (patch)
tree3b10ea7843bd0baa292c9a44ee40b28d3c8bfa32 /examples/js/applauncher/app.ts
parent51514347ef3bc1d7a6f37e798a43111b2f2fc9e0 (diff)
example: applauncher
Diffstat (limited to 'examples/js/applauncher/app.ts')
-rw-r--r--examples/js/applauncher/app.ts9
1 files changed, 9 insertions, 0 deletions
diff --git a/examples/js/applauncher/app.ts b/examples/js/applauncher/app.ts
new file mode 100644
index 0000000..d6c9e1c
--- /dev/null
+++ b/examples/js/applauncher/app.ts
@@ -0,0 +1,9 @@
+import { App } from "astal/gtk3"
+import style from "./style.scss"
+import Applauncher from "./widget/Applauncher"
+
+App.start({
+ instanceName: "launcher",
+ css: style,
+ main: Applauncher,
+})