/usr/share/config.kcfg/khangman.kcfg is in khangman 4:16.08.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 | <?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="khangmanrc"/>
<group name="Language">
<entry name="CurrentLevel" type="Int">
<label>Level</label>
<default>0</default>
</entry>
<entry name="LevelFile" type="String">
<default>"animals.kvtml"</default>
</entry>
<entry name="SelectedLanguage" type="String">
<label>The language selected by the user</label>
<code>
KSharedConfigPtr globalConf = KSharedConfig::openConfig();
QString userLanguage=globalConf->group("Locale").readEntry("Language", "en");
if (userLanguage.isEmpty())
userLanguage = "en";
else
//keep only the first 2 characters
userLanguage = userLanguage.left(2);
</code>
<default>userLanguage</default>
</entry>
</group>
<group name="Look">
<entry name="Theme" type="String">
<label>Background theme name</label>
<default>notes</default>
</entry>
</group>
<group name="General">
<entry name="OneLetter" type="Bool">
<label>Check this if you do not want to discover each instance of the same letter.</label>
<default>false</default>
</entry>
<entry name="EnableAnimations" type="Bool">
<label>Enable Animations</label>
<default>false</default>
</entry>
<entry name="Sound" type="Bool">
<label>If checked, sounds will be played for New Game and Win Game</label>
<default>false</default>
</entry>
<entry name="Hint" type="Bool">
<label>If checked, hints will always been displayed. If this is not checked (default)
hints will be displayed only per word when the user chooses to show the hint.</label>
<default>false</default>
</entry>
<entry name="resolveTime" type="int">
<label>This setting allows you to set in seconds how much time is available for resolving the word.</label>
<default>120</default>
</entry>
</group>
<group name="Advanced">
<entry name="AccentedLetters" type="Bool">
<label>Type accented letters separately from normal letters</label>
<default>false</default>
</entry>
</group>
<group name="KNewStuff">
<entry name="ProvidersUrl" type="Path">
<label>The Providers path for KHangMan</label>
<default>"http://edu.kde.org/khangman/downloads/providers.xml"</default>
</entry>
</group>
</kcfg>
|