mirror of
https://codeberg.org/diginaut/dotfiles.git
synced 2026-02-04 14:40:27 +01:00
11 lines
262 B
Bash
Executable File
11 lines
262 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Use a uniquely named, temporary directory to download to
|
|
TMPDIR=$(mktemp -d)
|
|
|
|
wget "https://discord.com/api/download?platform=linux&format=deb" -O "${TMPDIR}/discord.deb"
|
|
sudo dpkg -i "${TMPDIR}/discord.deb"
|
|
|
|
# Clean up
|
|
rm "${TMPDIR}/discord.deb"
|