This file is indexed.

/etc/X11/Xsession.d/55ukui-session_ukuirc is in ukui-session-manager 1.1.2-0ubuntu1.

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
# If we are running the UKUI session, source ~/.ukuirc

BASESTARTUP=${STARTUP%% *}
BASESTARTUP=${BASESTARTUP##*/}
if [ "$BASESTARTUP" = x-session-manager ]; then
    BASESTARTUP=$(basename $(readlink /etc/alternatives/x-session-manager))
fi
case "$BASESTARTUP" in
  ukui-session*)
    UKUIRC=$HOME/.ukuirc
    if [ -r "$UKUIRC" ]; then
      . "$UKUIRC"
    fi
    # We prepend /usr/share/ukui since its defaults.list actually points
    # to /etc so it is configurable.
    if [ -z "$XDG_DATA_DIRS" ]; then
      XDG_DATA_DIRS=/usr/share/ukui:/usr/local/share/:/usr/share/
    else
      XDG_DATA_DIRS=/usr/share/ukui:"$XDG_DATA_DIRS"
    fi
    export XDG_DATA_DIRS
    ;;
esac