This file is indexed.

/usr/share/glib-2.0/schemas/org.gnome.gnome-chess.gschema.xml is in gnome-chess 1:3.8.3-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
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
  <enum id="org.gnome.gnome-chess.PieceType">
    <value value="0" nick="pawn"/>
    <value value="1" nick="rook"/>
    <value value="2" nick="knight"/>
    <value value="3" nick="bishop"/>
    <value value="4" nick="queen"/>
    <value value="5" nick="king"/>
  </enum>

  <enum id="org.gnome.gnome-chess.MoveFormat">
    <value value="0" nick="human"/>
    <value value="1" nick="san"/>
    <value value="2" nick="fan"/>
    <value value="3" nick="lan"/>
  </enum>

  <enum id="org.gnome.gnome-chess.BoardSide">
    <value value="0" nick="white"/>
    <value value="1" nick="black"/>
    <value value="2" nick="human"/>
    <value value="3" nick="current"/>
    <value value="4" nick="facetoface"/>
  </enum>

  <enum id="org.gnome.gnome-chess.Difficulty">
    <value value="0" nick="easy"/>
    <value value="1" nick="normal"/>
    <value value="2" nick="hard"/>
  </enum>

  <schema path="/org/gnome/gnome-chess/" id="org.gnome.gnome-chess.Settings" gettext-domain="gnome-games">
    <key type="i" name="width">
      <default>700</default>
      <summary>The width of the window</summary>
      <description>The width of the main window in pixels.</description>
    </key>
    <key type="i" name="height">
      <default>550</default>
      <summary>The height of the window</summary>
      <description>The height of the main window in pixels.</description>
    </key>
    <key type="b" name="maximized">
      <default>false</default>
      <summary>A flag to enable maximized mode</summary>
      <description>A flag to enable maximized mode</description>
    </key>
    <key type="b" name="fullscreen">
      <default>false</default>
      <summary>A flag to enable fullscreen mode</summary>
      <description>A flag to enable fullscreen mode</description>
    </key>
    <key type="b" name="show-3d">
      <default>false</default>
      <summary>A flag to enable 3D mode</summary>
      <description>A flag to enable 3D mode</description>
    </key>
    <key type="b" name="show-3d-smooth">
      <default>false</default>
      <summary>A flag to smooth (anti-alias) the 3D display</summary>
      <description>A flag to smooth (anti-alias) the 3D display</description>
    </key>
    <key type="s" name="piece-theme">
      <default>'simple'</default>
      <summary>The piece theme to use</summary>
      <description>The piece theme to use</description>
    </key>
    <key type="b" name="show-move-hints">
      <default>true</default>
      <summary>A flag to enable move hints</summary>
      <description>A flag to enable move hints</description>
    </key>
    <key type="b" name="show-numbering">
      <default>false</default>
      <summary>A flag to enable board numbering</summary>
      <description>A flag to enable board numbering</description>
    </key>
    <key type="b" name="show-history">
      <default>true</default>
      <summary>A flag to enable the move history browser</summary>
      <description>A flag to enable the move history browser</description>
    </key>
    <key type="b" name="show-toolbar">
      <default>false</default>
      <summary>A flag to enable the toolbar</summary>
      <description>A flag to enable the toolbar</description>
    </key>
    <key type="s" name="save-directory">
      <default>''</default>
      <summary>The directory to open the save game dialog in</summary>
      <description>The directory to open the save game dialog in</description>
    </key>
    <key type="s" name="load-directory">
      <default>''</default>
      <summary>The directory to open the load game dialog in</summary>
      <description>The directory to open the load game dialog in</description>
    </key>
    <key name="move-format" enum="org.gnome.gnome-chess.MoveFormat">
      <default>'human'</default>
      <summary>The format to display moves in</summary>
      <description>The format to display moves in</description>
    </key>
    <key name="board-side" enum="org.gnome.gnome-chess.BoardSide">
      <default>'human'</default>
      <summary>The side of the board that is in the foreground</summary>
      <description>The side of the board that is in the foreground</description>
    </key>
    <key type="i" name="duration">
      <default>0</default>
      <summary>The duration of a game in seconds (0 for no limit)</summary>
      <description>The duration of a game in seconds (0 for no limit)</description>
    </key>
    <key type="b" name="play-as-white">
      <default>true</default>
      <summary>true if the human player is playing white</summary>
      <description>true if the human player is playing white</description>
    </key>
    <key type="s" name="opponent">
      <default>''</default>
      <summary>The opponent player</summary>
      <description>Can be 'human' (play against another human player), '' (use the first available chess engine) or the name of a specific engine to play against</description>
    </key>
    <key name="difficulty" enum="org.gnome.gnome-chess.Difficulty">
      <default>'easy'</default>
      <summary>Difficulty of the opponent chess engine</summary>
      <description>Difficulty of the opponent chess engine</description>
    </key>
  </schema>
</schemalist>