From f94fc0aa97f52d93923ec3839969e51cf41ec396 Mon Sep 17 00:00:00 2001 From: Evan Date: Sun, 19 Jul 2026 14:35:10 -0500 Subject: [PATCH] install discord & vs code --- main.sh | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/main.sh b/main.sh index 8ce3bdf..1733bd1 100644 --- a/main.sh +++ b/main.sh @@ -60,7 +60,12 @@ echo 'export PATH="$PATH:/opt/nvim-linux-x86_64/bin"' | tee "$HOME/.bashrc" -a git clone https://gitea.jovan04.com/evan/neovim-config "$HOME/.config/nvim" echo "* install pyright language server (and any other relevant ones)" | tee todo.md -a -# Other editor(s) (TBD) +# install VS Code +wget "https://code.visualstudio.com/sha/download?build=stable&os=linux-deb-x64" -O "vs-code-linux-x64.deb" +echo "code code/add-microsoft-repo boolean true" | sudo debconf-set-selections +sudo apt-get install -y ./vs-code-linux-x64.deb +rm ./vs-code-linux-x64.deb + echo "* investigate and install other IDE(s)" | tee todo.md -a # Brave browser @@ -71,7 +76,14 @@ echo "* generate new SSH key and add to GitHub?" | tee todo.md -a # things I'd rather not install but have to # Discord (chat) -echo "* install Discord (chat)" | tee todo.md -a +wget "https://discord.com/api/download?platform=linux&format=deb" -O "discord-linux.deb" +sudo apt-get install -y ./discord-linux.deb +rm ./discord-linux.deb + +mkdir -p "$HOME/.config/discord" +echo '{ "DANGEROUS_ENABLE_DEVTOOLS_ONLY_ENABLE_IF_YOU_KNOW_WHAT_YOURE_DOING": true }' | tee "$HOME/.config/discord/settings.json" + +echo "* find discord replacement" | tee todo.md -a # Zoom (video call) echo "* install Zoom (video call)" | tee todo.md -a