blob: 8bf113e6882c7c22a514abe5156905bb71705a12 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
if [ "$XDG_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
|