This file is indexed.

/etc/X11/Xsession.d/90qt-a11y is in at-spi2-core 2.10.2.is.2.10.1-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
# -*- sh -*-
# Xsession.d script to set the QT_ACCESSIBILITY env variable when accessibility
# is enabled.
#
# This file is sourced by Xsession(5), not executed.

if [ -x "/usr/bin/gsettings" ]; then
	a11y_enabled=$(gsettings get org.gnome.desktop.interface toolkit-accessibility)
	if [ "$a11y_enabled" = "true" ]; then
		export QT_ACCESSIBILITY=1
	fi
fi