Merge pull request #99 from 266-750Balloons/deb822-update

Update install section for Debian Trixie / Ubuntu 24.04 Sources Format
This commit is contained in:
Simon Sobisch 2025-08-14 08:02:12 +02:00 committed by GitHub
commit b6748cea51
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -129,10 +129,16 @@ wget -qO - https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/master/pub.g
```
Add the repository:
```bash
echo 'deb [arch=amd64,arm64 signed-by=/usr/share/keyrings/vscodium-archive-keyring.gpg] https://download.vscodium.com/debs vscodium main' \
| sudo tee /etc/apt/sources.list.d/vscodium.list
```
- **Debian 13 / Ubuntu 24.04 or newer**
```bash
echo -e 'Types: deb\nURIs: https://download.vscodium.com/debs\nSuites: vscodium\nComponents: main\nArchitectures: amd64 arm64\nSigned-by: /usr/share/keyrings/vscodium-archive-keyring.gpg' \
| sudo tee /etc/apt/sources.list.d/vscodium.sources
```
- **Debian 12 / Ubuntu 23.10 or older**:
```bash
echo 'deb [arch=amd64,arm64 signed-by=/usr/share/keyrings/vscodium-archive-keyring.gpg] https://download.vscodium.com/debs vscodium main' \
| sudo tee /etc/apt/sources.list.d/vscodium.list
```
Update then install vscodium (if you want vscodium-insiders, then replace `codium` by `codium-insiders`):
```bash