# This script is generated by FTWA
# /u/ links are only available for 24h
# Check the app store to find more apps: https://ftwa.mathix.dev/store

# Exit on error
set -e;

# Setup Firefox if needed
# Firefox setup skipped

echo "
Creating desktop entry...";
tmpdir="$(mktemp -d)";
tmp_desktop_file="$tmpdir/ftwa-bandcamp.desktop";

cat > $tmp_desktop_file <<EOF
[Desktop Entry]
Type=Application
Name=Bandcamp
Exec=/usr/bin/google-chrome-stable --app='https://bandcamp.com/'
Icon=ftwa-bandcamp
Terminal=false
StartupNotify=true
StartupWMClass=ftwa-bandcamp

# This file was generated using FTWA (https://ftwa.mathix.dev)
EOF

icon_path="$tmpdir/ftwa-bandcamp.png";
curl -fsSLo $icon_path 'https://ftwa.mathix.dev/icons/bandcamp/regular.png';

xdg-desktop-menu install $tmp_desktop_file;
xdg-icon-resource install --size 512 "${tmpdir}/ftwa-bandcamp.png" 'ftwa-bandcamp';

echo "Desktop entry created.";