# 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-superlist.desktop";

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

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

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

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

echo "Desktop entry created.";