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

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

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

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

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

echo "Desktop entry created.";