mirror of
https://gitee.com/amber-ce/amber-ce-bookworm.git
synced 2025-12-15 03:22:06 +08:00
18 lines
591 B
Plaintext
Executable File
18 lines
591 B
Plaintext
Executable File
|
|
|
|
|
|
|
|
# Ensure base distro defaults xdg path are set if nothing filed up some
|
|
# defaults yet.
|
|
if [ -z "$XDG_DATA_DIRS" ]; then
|
|
export XDG_DATA_DIRS="/usr/local/share:/usr/share"
|
|
fi
|
|
|
|
# Desktop files (used by desktop environments within both X11 and Wayland) are
|
|
# looked for in XDG_DATA_DIRS; make sure it includes the relevant directory for ACE
|
|
ACE_path="/opt/apps/amber-ce-bookworm/files/ace-env/flamescion-container-tools/data-dir/"
|
|
if [ -n "${XDG_DATA_DIRS##*${ACE_path}}" ] && [ -n "${XDG_DATA_DIRS##*${ACE_path}:*}" ]; then
|
|
export XDG_DATA_DIRS="${XDG_DATA_DIRS}:${ACE_path}"
|
|
fi
|
|
|