mirror of
https://mau.dev/andreijiroh-dev/dotfiles.git
synced 2024-11-10 08:59:40 +00:00
Andrei Jiroh Halili
81aca31cdf
Plus, in this commit: * updated most of shell rc and then some Signed-off-by: Andrei Jiroh Halili <ajhalili2006@gmail.com>
8 lines
306 B
Bash
Executable file
8 lines
306 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
# An script to automate upgrading Discord via the deb download link.
|
|
# TODO:Implement checks and flags to support for rpms and tar.gz setups
|
|
|
|
wget "https://discord.com/api/download?platform=linux&format=deb" -O /tmp/discord-linux-amd64.deb
|
|
sudo apt install /tmp/discord-linux-amd64.deb
|