Created
August 9, 2017 22:42
-
-
Save chand1012/b95f4f232aba263664b216f1a5b6ce8a 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
if [[ $EUID -ne 0 ]]; then | |
echo "This script must be run as root" | |
exit 1 | |
fi | |
echo Installing Discord | |
apt install libgconf-2-4 libappindicator1 | |
cd ~/Downloads | |
wget -O discord-0.0.2.deb https://discordapp.com/api/download?platform=linux&format=deb | |
sudo dpkg -i discord-0.0.2.deb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment