From 10447f5abcb28f3df1544f1732f82d538130b3c9 Mon Sep 17 00:00:00 2001 From: kotontrion Date: Thu, 10 Oct 2024 11:26:17 +0200 Subject: cava: add doce --- docs/vitepress.config.ts | 1 + 1 file changed, 1 insertion(+) (limited to 'docs/vitepress.config.ts') diff --git a/docs/vitepress.config.ts b/docs/vitepress.config.ts index 25d9e36..a76388b 100644 --- a/docs/vitepress.config.ts +++ b/docs/vitepress.config.ts @@ -82,6 +82,7 @@ export default defineConfig({ { text: "Auth", link: "/guide/libraries/auth" }, { text: "Battery", link: "/guide/libraries/battery" }, { text: "Bluetooth", link: "/guide/libraries/bluetooth" }, + { text: "Cava", link: "/guide/libraries/cava" }, { text: "Hyprland", link: "/guide/libraries/hyprland" }, { text: "Mpris", link: "/guide/libraries/mpris" }, { text: "Network", link: "/guide/libraries/network" }, -- cgit v1.2.3 From 8306ec0789854f9e04bc1708c4a7dc2afc1b4c90 Mon Sep 17 00:00:00 2001 From: Kevin <119447307+tokyob0t@users.noreply.github.com> Date: Fri, 25 Oct 2024 13:50:00 -0300 Subject: docs: lua docs (#50) --- docs/vitepress.config.ts | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'docs/vitepress.config.ts') diff --git a/docs/vitepress.config.ts b/docs/vitepress.config.ts index 2880477..2df3eea 100644 --- a/docs/vitepress.config.ts +++ b/docs/vitepress.config.ts @@ -61,7 +61,7 @@ export default defineConfig({ { text: "TypeScript", base: "/guide/typescript", - collapsed: false, + collapsed: true, items: [ { text: "Installation", link: "/installation" }, { text: "First Widgets", link: "/first-widgets" }, @@ -78,10 +78,18 @@ export default defineConfig({ { text: "Lua", base: "/guide/lua", - collapsed: false, + collapsed: true, items: [ { text: "Installation", link: "/installation" }, { text: "First Widgets", link: "/first-widgets" }, + { text: "Theming", link: "/theming" }, + { text: "CLI and App", link: "/cli-app" }, + { text: "Widget", link: "/widget" }, + { text: "Variable", link: "/variable" }, + { text: "Binding", link: "/binding" }, + // { text: "GObject", link: "/gobject" }, + { text: "Utilities", link: "/utilities" }, + // { text: "FAQ", link: "/faq" }, ], }, { -- cgit v1.2.3