mirror of
https://github.com/flatpak/flatpak.git
synced 2026-01-14 18:58:03 -05:00
This avoids gvfs-daemon being started when logging in as root via ssh. Bug-Debian: https://bugs.debian.org/975710
27 lines
831 B
Bash
27 lines
831 B
Bash
if command -v flatpak > /dev/null; then
|
|
# set XDG_DATA_DIRS to include Flatpak installations
|
|
|
|
new_dirs=$(
|
|
(
|
|
unset G_MESSAGES_DEBUG
|
|
echo "${XDG_DATA_HOME:-"$HOME/.local/share"}/flatpak"
|
|
GIO_USE_VFS=local flatpak --installations
|
|
) | (
|
|
new_dirs=
|
|
while read -r install_path
|
|
do
|
|
share_path=$install_path/exports/share
|
|
case ":$XDG_DATA_DIRS:" in
|
|
(*":$share_path:"*) :;;
|
|
(*":$share_path/:"*) :;;
|
|
(*) new_dirs=${new_dirs:+${new_dirs}:}$share_path;;
|
|
esac
|
|
done
|
|
echo "$new_dirs"
|
|
)
|
|
)
|
|
|
|
export XDG_DATA_DIRS
|
|
XDG_DATA_DIRS="${new_dirs:+${new_dirs}:}${XDG_DATA_DIRS:-/usr/local/share:/usr/share}"
|
|
fi
|