From 7708d90fe3210a0da43c16c5d55156abb91cd4e9 Mon Sep 17 00:00:00 2001 From: Pierre Tachoire Date: Mon, 4 May 2026 11:38:19 +0200 Subject: [PATCH 1/2] add more install methods --- src/content/open-source/installation.mdx | 26 ++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/src/content/open-source/installation.mdx b/src/content/open-source/installation.mdx index 7d8165f..8498f2e 100644 --- a/src/content/open-source/installation.mdx +++ b/src/content/open-source/installation.mdx @@ -39,6 +39,32 @@ The following command fetches the Docker image and starts a new container exposi docker run -d --name lightpanda -p 127.0.0.1:9222:9222 lightpanda/browser:nightly ``` +## Install from package manager + +### Homebrew + +Install the last nightly using Homebrew. + +```sh copy +brew install lightpanda-io/browser/lightpanda +``` + +### Arch Linux User Repository + +```sh copy +yay -S lightpanda-bin +``` + +You can alternatively use the last nightly version with: +```sh copy +yay -S lightpanda-nightly-bin +``` + +### Debian/Ubuntu + +Starting `0.3.0`, a `.deb` is available with each [tagged +release](https://github.com/lightpanda-io/browser/releases). + ## Install manually from the nightly builds The latest binary can be downloaded from the [nightly From 54dd54bb1b118b7d01a6dbce1d1d52387d674373 Mon Sep 17 00:00:00 2001 From: Pierre Tachoire Date: Mon, 4 May 2026 11:39:26 +0200 Subject: [PATCH 2/2] improve menus --- src/content/_meta.ts | 4 +--- src/content/cloud-offer/_meta.ts | 13 +++++++++++++ src/content/open-source/_meta.ts | 7 ++++++- 3 files changed, 20 insertions(+), 4 deletions(-) create mode 100644 src/content/cloud-offer/_meta.ts diff --git a/src/content/_meta.ts b/src/content/_meta.ts index b4990b7..20ee871 100644 --- a/src/content/_meta.ts +++ b/src/content/_meta.ts @@ -15,9 +15,7 @@ const meta: MetaRecord = { }, quickstart: { title: 'Quickstart', - theme: { - breadcrumb: false, - }, + theme: {}, }, 'open-source': 'Open source edition', 'cloud-offer': 'Cloud offer', diff --git a/src/content/cloud-offer/_meta.ts b/src/content/cloud-offer/_meta.ts new file mode 100644 index 0000000..a73c132 --- /dev/null +++ b/src/content/cloud-offer/_meta.ts @@ -0,0 +1,13 @@ +import type { MetaRecord } from 'nextra' + +const meta: MetaRecord = { + 'getting-started': 'Getting started', + tools: { + title: 'Tools', + theme: { + collapsed: false, + }, + }, +} + +export default meta diff --git a/src/content/open-source/_meta.ts b/src/content/open-source/_meta.ts index a69f955..cb58ee0 100644 --- a/src/content/open-source/_meta.ts +++ b/src/content/open-source/_meta.ts @@ -3,7 +3,12 @@ import type { MetaRecord } from 'nextra' const meta: MetaRecord = { installation: 'Installation', usage: 'Usage', - guides: 'Guides', + guides: { + title: 'Guides', + theme: { + collapsed: false, + }, + }, 'systems-requirements': 'Systems requirements', }