You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/mate-base/mate-session-manager/files/10-user-dirs-update-mate-r2

13 lines
343 B

#!/bin/sh
# Create various XDG directories, and write ~/.config/user-dirs.dirs, etc.
# That file is read by glib to get XDG_PICTURES_DIR, etc
if [ "$XDG_CURRENT_DESKTOP" = "MATE" -o \
"$XDG_SESSION_DESKTOP" = "mate" -o \
"$DESKTOP_SESSION" = "mate" ]; then
if type xdg-user-dirs-update >/dev/null 2>&1; then
xdg-user-dirs-update
fi
fi