This file is indexed.

/usr/share/ltsp/xinitrc.d/I10-x-keyboard-settings is in ltsp-client-core 5.3.7-0ubuntu2.

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
29
30
# set up X keyboard related options

if [ -x /usr/bin/setxkbmap ]; then

    kbopts=""

    if [ -n "$XKBLAYOUT" ]; then
        kbopts="$kbopts -layout $XKBLAYOUT"
    fi

    if [ -n "$XKBMODEL" ]; then
        kbopts="$kbopts -model $XKBMODEL"
    fi
    
    if [ -n "$XKBRULES" ]; then
        kbopts="$kbopts -rules $XKBRULES"
    fi

    if [ -n "$XKBOPTIONS" ]; then
        kbopts="$kbopts -option $XKBOPTIONS"
    fi

    if [ -n "$XKBVARIANT" ]; then
        kbopts="$kbopts -variant $XKBVARIANT"
    fi
   
    if [ -n "$kbopts" ]; then
        /usr/bin/setxkbmap $kbopts
    fi
fi