1
2
3
4
5
6
7
8
9
10
11
12
13 | ogra@anubis:~/datengrab/test/linux-generic-allwinner$ cat /etc/X11/Xsession.d/65snappy
# This file is sourced by Xsession(5), not executed.
# Add the additional snappy desktop path
if [ -z "$XDG_DATA_DIRS" ]; then
# 60x11-common_xdg_path does not always set XDG_DATA_DIRS
# so we ensure we have sensible defaults here (LP: #1575014)
# as a workaround
XDG_DATA_DIRS=/usr/local/share/:/usr/share/:/var/lib/snapd/desktop
else
XDG_DATA_DIRS="$XDG_DATA_DIRS":/var/lib/snapd/desktop
fi
export XDG_DATA_DIRS
|