dotfiles/templates/bin/osu-update

7 lines
179 B
Bash
Executable file

#!/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"