/usr/share/config.kcfg/kigo.kcfg is in kigo 4:17.12.3-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 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 | <?xml version="1.0" encoding="UTF-8"?>
<kcfg xmlns="http://www.kde.org/standards/kcfg/1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.kde.org/standards/kcfg/1.0
http://www.kde.org/standards/kcfg/1.0/kcfg.xsd">
<kcfgfile name="kigorc"/>
<group name="Backend">
<entry name="EngineCommand" type="String">
<label>The current game engine command with (optional) parameters</label>
<default code="true">
QStandardPaths::findExecutable(QStringLiteral("gnugo")) + QStringLiteral(" --mode gtp")
</default>
</entry>
<entry name="EngineWorking" type="Bool">
<default>true</default>
</entry>
</group>
<group name="UserInterface">
<entry name="Theme" type="String">
<label>The graphical theme to be used</label>
<default>default</default>
</entry>
<entry name="ShowBoardLabels" type="Bool">
<label>Determines whether board labels are shown</label>
<default>true</default>
</entry>
<entry name="ShowMoveNumbers" type="Bool">
<label>Move numbers are drawn onto stones if enabled</label>
<default>false</default>
</entry>
<entry name="HintVisibleTime" type="Double">
<label>Number of seconds for which a hint is visible</label>
<default>3.0</default>
<min>1.0</min>
<max>5.0</max>
</entry>
</group>
<group name="Game">
<entry name="BlackPlayerHuman" type="Bool">
<label>Is black a human player?</label>
<default>true</default>
</entry>
<entry name="BlackPlayerName" type="String">
<label>The name of the black player</label>
<default>Black Player</default>
</entry>
<entry name="BlackPlayerStrength" type="Int">
<label>The strength of the black player</label>
<default>10</default>
<min>1</min>
<max>10</max>
</entry>
<entry name="WhitePlayerHuman" type="Bool">
<label>Is white a human player?</label>
<default>false</default>
</entry>
<entry name="WhitePlayerName" type="String">
<label>The name of the white player</label>
<default>White Player</default>
</entry>
<entry name="WhitePlayerStrength" type="Int">
<label>The strength of the white player</label>
<default>1</default>
<min>1</min>
<max>10</max>
</entry>
<entry name="BoardSize" type="Int">
<label>Go board size</label>
<tooltip></tooltip>
<default>9</default>
<min>3</min>
<max>19</max>
</entry>
<entry name="Komi" type="Double">
<label>Komi</label>
<tooltip>With komi you can give the black player some extra points</tooltip>
<default>4.5</default>
<min>0</min>
<max>50</max>
</entry>
<entry name="FixedHandicapValue" type="Int">
<label>Extra stones for the black player</label>
<default>4</default>
<min>1</min>
<max>9</max>
</entry>
</group>
</kcfg>
|