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.
calculate-overlay/mate-base/mate-session-manager/files/15-xdg-data-mate

10 lines
224 B

#!/bin/sh
if [ "$DESKTOP_SESSION" = "mate" ]; then
if [ -z "$XDG_DATA_DIRS" ]; then
export XDG_DATA_DIRS=/usr/share/mate:/usr/local/share/:/usr/share/
else
export XDG_DATA_DIRS=/usr/share/mate:"$XDG_DATA_DIRS"
fi
fi