bubbles/iso_configs/calamares_settings/deb/scripts/add-calamares-desktop-icon

36 lines
1.6 KiB
Bash
Executable File

#!/bin/sh
# Creates an "Install Debian" icon on the live session tested with:
# Xfce, LXDE, LXqt, Gnome, KDE, Mate, Cinnamon
# We query xdg-user-dir because the Desktop directory has different
# names for different languages
DESKTOP=$(xdg-user-dir DESKTOP)
# Create ~/Desktop just in case this runs before the xdg folder
# creation script.
mkdir -p $DESKTOP
# Among the Debian desktop environments, LXDE is the only one
# that behaves completely different.
if [ -f /usr/bin/lxsession ]; then
echo "[Desktop Entry]" > $DESKTOP/calamares-install-peppermint.desktop
echo "Type=Link" >> $DESKTOP/calamares-install-peppermint.desktop
echo "Name=Install Debian" >> $DESKTOP/calamares-install-peppermint.desktop
echo "Icon=install-debian" >> $DESKTOP/calamares-install-peppermint.desktop
echo "URL=/usr/share/applications/calamares-install-peppermint.desktop" \
>> $DESKTOP/calamares-install-peppermint.desktop
else
cp /usr/share/applications/calamares-install-peppermint.desktop $DESKTOP
# Xfce needs this executable otherwise it complains, everything
# else doesn't seem to care either way.
chmod +x $DESKTOP/calamares-install-peppermint.desktop
fi
# Set desktop launcher as trusted under gnome/xfce (See: #1037299)
gio set --type=string ~/Desktop/calamares-install-peppermint.desktop \
metadata::trusted true
gio set --type=string ~/Desktop/calamares-install-peppermint.desktop \
metadata::xfce-exe-checksum \
"$(sha256sum ~/Desktop/calamares-install-peppermint.desktop | cut -f1 -d' ')"
touch ~/Desktop/calamares-install-peppermint.desktop