Skip to content

Instantly share code, notes, and snippets.

View KyodaiKen's full-sized avatar
🌧️
Autumn mood

Kyoudai Ken KyodaiKen

🌧️
Autumn mood
View GitHub Profile
@KyodaiKen
KyodaiKen / update-discord.sh
Last active March 25, 2024 21:48
Linux: Update Discord instantly
#!/bin/bash
wget "https://discord.com/api/download?platform=linux&format=tar.gz" -O discord-update.tar.gz
tar xvf discord-update.tar.gz
rm discord-update.tar.gz
#Change the next two lines below to point to your discord installation in your particular Linux distribution or setup. This may require root privileges!
rm -rf /opt/discord/*
cp -r Discord/* /opt/discord/
rm -rf Discord