This file is indexed.

/etc/X11/Xsession.d/90atk-adaptor is in libatk-adaptor 2.26.2-1.

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
24
25
26
27
28
# -*- sh -*-
# Xsession.d script to set the GTK_MODULES env variable to load atk
#
# This file is sourced by Xsession(5), not executed.

add_module()
{
	case :$GTK_MODULES: in
		*:$1:*)
			;;
		*)
			if [ -z "$GTK_MODULES" ]
			then
				GTK_MODULES=$1
			else
				GTK_MODULES=$GTK_MODULES:$1
			fi
			;;
	esac
}

add_module gail
add_module atk-bridge

export GTK_MODULES
if [ -x "/usr/bin/dbus-update-activation-environment" ]; then
        dbus-update-activation-environment --verbose --systemd GTK_MODULES
fi