Add instructions for saving and loading extensions

This commit is contained in:
ducoterra
2023-08-02 10:03:52 -04:00
parent 79a4cdab63
commit fc9a4f5988
2 changed files with 76 additions and 3 deletions

23
arch.md
View File

@@ -5,6 +5,7 @@
- [Arch with Gnome](#arch-with-gnome)
- [Installation](#installation)
- [Post Install](#post-install)
- [Locale](#locale)
- [Hardware Acceleration](#hardware-acceleration)
- [Firewall](#firewall)
- [Power Management](#power-management)
@@ -21,13 +22,12 @@
- [XWayland](#xwayland)
- [Wireguard](#wireguard)
- [btrbk](#btrbk)
- [VSCode](#vscode)
- [Apps](#apps)
- [Bashrc](#bashrc)
- [Help](#help)
- [Update Grub](#update-grub)
- [Downgrading Kernel](#downgrading-kernel)
- [Packages](#packages)
- [Official](#official)
- [AUR](#aur)
<!-- /TOC -->
@@ -493,6 +493,23 @@ For the open source version of code install `code`:
sudo pacman -S code
```
For the proprietary version of vscode install `yay` and then:
```bash
yay -S visual-studio-code-bin
```
To save a list of installed extensions run:
```bash
code --list-extensions >> vscode_extensions.txt
```
To install that list of extensions run:
```bash
cat vscode_extensions.txt | xargs -L 1 code --install-extension
```
## Apps