#!/usr/bin/env bash
#
# Boopster Installer — double-click me in Finder.
#
# Self-contained: fetches and runs the latest install.sh from boopster.iffun.ru.
# Terminal opens briefly, then native dialogs take over.
#
# Downloaded files get a quarantine flag — Finder will ask
# "Are you sure you want to open this?" once. Click Open.
#
# If you'd rather see the log: /tmp/boopster-install.log
#
set -e
echo ""
echo "  Boopster Installer"
echo "  ───────────────────"
echo "  Fetching install script…"
echo ""
exec bash <(curl -fsSL https://boopster.iffun.ru/install.sh)
