Last active
November 28, 2024 19:46
-
-
Save m-bers/6cf22b5177ae20a85c22fb2bae05ff0e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
curl -LJO "https://code.visualstudio.com/sha/download?build=stable&os=cli-alpine-x64" | |
tar -xvf vscode_cli_alpine_x64_cli.tar.gz | |
chmod +x code | |
sudo cp code /usr/local/bin | |
cat << EOF | sudo tee /etc/systemd/system/code.service | |
[Unit] | |
Description=Visual Studio Code CLI service | |
[Service] | |
ExecStart=/sbin/runuser -l $USER -c "/usr/local/bin/code serve-web \ | |
--host=0.0.0.0 \ | |
--without-connection-token \ | |
--accept-server-license-terms \ | |
--disable-telemetry \ | |
--server-data-dir /home/$USER/.vscode" | |
[Install] | |
WantedBy=multi-user.target | |
EOF | |
sudo systemctl enable --now code |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment