8 lines
179 B
Text
8 lines
179 B
Text
|
#!/bin/sh
|
||
|
|
||
|
URL="https://github.com/ppy/osu/releases/latest/download/osu.AppImage"
|
||
|
OUTPUT="$HOME/.local/lib/appimages/osu.AppImage"
|
||
|
|
||
|
curl -L "$URL" -o "$OUTPUT"
|
||
|
chmod +x "$OUTPUT"
|