xxwhirlpool
·
2026-02-20
updiscord
1#!/usr/bin/env bash
2#
3# lazy ass way to update discord
4
5DL_FOLDER="/home/kat/Downloads/Installers"
6DISCORD_DL_URL="https://discord.com/api/download/stable?platform=linux&format=deb"
7DEB_FILE="new_discord_$(today time).deb"
8DEB_FOL="$DL_FOLDER/$DEB_FILE"
9
10wget -O "$DEB_FOL" "$DISCORD_DL_URL"
11sudo dpkg -i "$DEB_FOL"
12rm "$DEB_FOL"