This file is indexed.

/usr/share/upstart/sessions/unity-gtk-module.conf is in unity-gtk-module-common 0.0.0+14.04.20140403-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
description "Unity GTK Module Environment variables"

start on starting dbus

script
    if [ -n "$GTK_MODULES" ]
    then
      GTK_MODULES="$GTK_MODULES:unity-gtk-module"
    else
      GTK_MODULES="unity-gtk-module"
    fi

    if [ -z "$UBUNTU_MENUPROXY" ]
    then
      UBUNTU_MENUPROXY=1
    fi

    initctl set-env --global GTK_MODULES=$GTK_MODULES
    initctl set-env --global UBUNTU_MENUPROXY=$UBUNTU_MENUPROXY
end script