diff options
author | Aylur <[email protected]> | 2024-11-18 16:05:21 +0100 |
---|---|---|
committer | Aylur <[email protected]> | 2024-11-18 16:05:21 +0100 |
commit | 41c002faf826a8ac637e6dece4c9ba1e65b1c608 (patch) | |
tree | a2d13b05ff895f7989e89a199cb8d13cbb1b83e2 /docs | |
parent | f5ed9aad2c8ab133b5c188aec70b0f704748015d (diff) |
docs: add examples pages
copies from the supported languages page
Diffstat (limited to 'docs')
-rw-r--r-- | docs/guide/lua/examples.md | 4 | ||||
-rw-r--r-- | docs/guide/typescript/examples.md | 14 | ||||
-rw-r--r-- | docs/vitepress.config.ts | 2 |
3 files changed, 20 insertions, 0 deletions
diff --git a/docs/guide/lua/examples.md b/docs/guide/lua/examples.md new file mode 100644 index 0000000..be46b6e --- /dev/null +++ b/docs/guide/lua/examples.md @@ -0,0 +1,4 @@ +# Lua examples + +## [Simple Bar](https://github.com/Aylur/astal/tree/main/examples/lua/simple-bar) + diff --git a/docs/guide/typescript/examples.md b/docs/guide/typescript/examples.md new file mode 100644 index 0000000..ec51e89 --- /dev/null +++ b/docs/guide/typescript/examples.md @@ -0,0 +1,14 @@ +# TypeScript Examples + +## Gtk3 + +### [Simple Bar](https://github.com/Aylur/astal/tree/main/examples/js/simple-bar) + + +### [Notification Popups](https://github.com/Aylur/astal/tree/main/examples/js/notifications) + +### [Applauncher](https://github.com/Aylur/astal/tree/main/examples/js/applauncher) + + +### [Media Player](https://github.com/Aylur/astal/tree/main/examples/js/media-player) + diff --git a/docs/vitepress.config.ts b/docs/vitepress.config.ts index 7e16eb7..3593b40 100644 --- a/docs/vitepress.config.ts +++ b/docs/vitepress.config.ts @@ -73,6 +73,7 @@ export default defineConfig({ { text: "GObject", link: "/gobject" }, { text: "Utilities", link: "/utilities" }, { text: "FAQ", link: "/faq" }, + { text: "Examples", link: "/examples" }, ], }, { @@ -90,6 +91,7 @@ export default defineConfig({ // { text: "GObject", link: "/gobject" }, { text: "Utilities", link: "/utilities" }, // { text: "FAQ", link: "/faq" }, + { text: "Examples", link: "/examples" }, ], }, { |