#!/bin/sh

xdg=$(xdg-user-dir DESKTOP)
src='/usr/share/applications'

if [[ -f /usr/bin/calamares ]]; then
	install -Dm755 $src/calamares.desktop \
	$xdg/calamares.desktop
	if $(is_sonar); then
		sed -e "s/^.*Name=.*/Name=Install Sonar Linux (Calamares)/" -i $xdg/calamares.desktop
	fi
fi

if [[ -f "$src/hexchat.desktop" ]]; then
	install -Dm755 $src/hexchat.desktop \
	"$xdg/hexchat.desktop"
fi

# workaround for glib trash bug (https://bugzilla.gnome.org/show_bug.cgi?id=748248)
userid=$(id -u $USER)
if [ ! -d "/.Trash-$userid" ]; then
    sudo mkdir -p /.Trash-$userid/{expunged,files,info}
    sudo chown -R $userid /.Trash-$userid
fi
