7 lines
153 B
Text
7 lines
153 B
Text
|
#!/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"
|