This file is indexed.

/etc/X11/Xsession.d/95unburden-home-dir is in unburden-home-dir 0.3.3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- shell-script -*-
# /etc/X11/Xsession.d/95unburden_home_dir
# This file is sourced by Xsession(5), not executed.

UNBURDEN_BASENAME=${UNBURDEN_BASENAME:-unburden-home-dir}

if [ -e /etc/default/"${UNBURDEN_BASENAME}" ]; then
    . /etc/default/"${UNBURDEN_BASENAME}"
fi

if [ -e "${HOME}/.${UNBURDEN_BASENAME}" ]; then
    . "${HOME}/.${UNBURDEN_BASENAME}"
fi

if [ -e "${XDG_CONFIG_HOME:-$HOME/.config}/${UNBURDEN_BASENAME}/config" ]; then
    . "${XDG_CONFIG_HOME:-$HOME/.config}/${UNBURDEN_BASENAME}/config"
fi

if [ "${UNBURDEN_HOME}" = "true" ] || \
   [ "${UNBURDEN_HOME}" = "yes" ]; then

    unburden-home-dir
fi