blob: df360cf85fdd3a7f2bfe5d5e943bfa9a4d1b982d (
plain)
1
2
3
4
5
6
7
8
9
|
#!/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
|