/usr/share/config.kcfg/kronometer.kcfg is in kronometer 2.1.2-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 | <?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" >
<include>KColorScheme</include>
<include>QFontDatabase</include>
<include>"timeformat.h"</include>
<kcfgfile name="kronometerrc"/>
<group name="General">
<entry name="showHours" type="Bool">
<default>false</default>
</entry>
<entry name="showMinutes" type="Bool">
<default>true</default>
</entry>
<entry name="showSecondFractions" type="Bool">
<default>true</default>
</entry>
<entry name="fractionsType" type="Enum">
<choices name="TimeFormat::SecondFraction">
<choice name="UpToTenths"/>
<choice name="UpToHundredths"/>
<choice name="UpToMilliseconds"/>
<choice name="NoFractions"/>
</choices>
<default>TimeFormat::UpToHundredths</default>
</entry>
<entry name="isLapsRecordingEnabled" type="Bool">
<default>true</default>
</entry>
<entry name="showLapHours" type="Bool">
<default>false</default>
</entry>
<entry name="showLapMinutes" type="Bool">
<default>true</default>
</entry>
<entry name="showLapSecondFractions" type="Bool">
<default>true</default>
</entry>
<entry name="lapFractionsType" type="Enum">
<choices name="TimeFormat::SecondFraction">
<choice name="UpToTenths"/>
<choice name="UpToHundredths"/>
<choice name="UpToMilliseconds"/>
<choice name="NoFractions"/>
</choices>
<default>TimeFormat::UpToHundredths</default>
</entry>
<entry name="showLapAbsoluteTimes" type="Bool">
<default>false</default>
</entry>
<entry name="showLapNotes" type="Bool">
<default>true</default>
</entry>
<entry name="menuBarNeverShown" type="Bool">
<default>true</default>
</entry>
</group>
<group name="Font">
<entry name="hourFont" type="Font">
<code>
QFont defaultFont(QFontDatabase::systemFont(QFontDatabase::GeneralFont).family(), 54);
</code>
<default code="true">defaultFont</default>
</entry>
<entry name="minFont" type="Font">
<default code="true">defaultFont</default>
</entry>
<entry name="secFont" type="Font">
<default code="true">defaultFont</default>
</entry>
<entry name="fracFont" type="Font">
<default code="true">defaultFont</default>
</entry>
</group>
<group name="Color">
<entry name="backgroundColor" type="Color">
<code>
KColorScheme schemeView(QPalette::Active, KColorScheme::View);
QColor defaultColor = schemeView.background().color();
</code>
<default code="true">defaultColor</default>
</entry>
<entry name="textColor" type="Color">
<code>
defaultColor = schemeView.foreground().color();
</code>
<default code="true">defaultColor</default>
</entry>
</group>
</kcfg>
|