mirror of
https://codeberg.org/vlw/dotfiles.git
synced 2025-11-05 09:22:42 +01:00
4 lines
208 B
Bash
Executable file
4 lines
208 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Add each extension to a JSON array and write to file in code-server User dir
|
|
code-server --list-extensions | jq -R -s 'split("\n") | .[:-1]' > $HOME/.local/share/code-server/User/extensions.json
|