6 lines
153 B
Bash
Executable file
6 lines
153 B
Bash
Executable file
#!/bin/sh
|
|
|
|
URL="https://discord.com/api/download/stable?platform=linux&format=tar.gz"
|
|
OUTPUT="$HOME/.local/lib"
|
|
|
|
curl -sL "$URL" | tar -zxv -C "$OUTPUT"
|