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

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

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

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

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

echo "Desktop entry created.";