blob: af36a5edf9de9d66e376f1af99e31b49499427f0 [file] [log] [blame]
# Not bash or zsh?
[ -n "$BASH_VERSION" -o -n "$ZSH_VERSION" ] || return 0
# Not running under sommelier?
[ $(systemctl --user show-environment | grep ^SOMMELIER_VERSION=) ] || return 0
# DISPLAY not set?
if [ -z "$DISPLAY" ]; then
export $(systemctl --user show-environment | grep ^DISPLAY=)
fi
# DISPLAY_LOW_DENSITY not set?
if [ -z "$DISPLAY_LOW_DENSITY" ]; then
export $(systemctl --user show-environment | grep ^DISPLAY_LOW_DENSITY=)
fi
# XCURSOR_SIZE not set?
if [ -z "$XCURSOR_SIZE" ]; then
export $(systemctl --user show-environment | grep ^XCURSOR_SIZE=)
fi
# WAYLAND_DISPLAY not set?
if [ -z "$WAYLAND_DISPLAY" ]; then
export $(systemctl --user show-environment | grep ^WAYLAND_DISPLAY=)
fi
# WAYLAND_DISPLAY_LOW_DENSITY not set?
if [ -z "$WAYLAND_DISPLAY_LOW_DENSITY" ]; then
export $(systemctl --user show-environment | \
grep ^WAYLAND_DISPLAY_LOW_DENSITY=)
fi