dotfiles/templates/bin/osu-update

8 lines
179 B
Text
Raw Normal View History

2023-04-11 13:58:50 -05:00
#!/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"