#!/usr/bin/sh
DESKTOP=$1
case $DESKTOP in
   GNOME|KDE|xfce4) exit 0;;
   *) exec /usr/bin/xdg-user-dirs-gtk-update ;;
esac
