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/gnome-base/gnome-session/files/15-xdg-data-gnome-r1

10 lines
262 B

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