#!/usr/bin/env bash

# RaveOS Support — opens the support page in the default browser.

URL="https://ko-fi.com/raveteam"

if command -v xdg-open >/dev/null 2>&1; then
    exec xdg-open "$URL"
elif command -v gio >/dev/null 2>&1; then
    exec gio open "$URL"
elif command -v sensible-browser >/dev/null 2>&1; then
    exec sensible-browser "$URL"
else
    echo "RaveOS Support: $URL" >&2
    exit 1
fi
