user.yaml
2.94 KB
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
131
## Example User Configuration File
# queryURL is the url used to request the XML user statistics file.
# This is the url for querying the user database
query_url: http://folding.extremeoverclocking.com/xml/user_summary.php?u=
# Position individual stat positions will be offset from.
# Defaults to 0,0
#position_origin:
# x: 0
# y: 0
# Default font settings. Any of these may be overridden by defining them
# in an individual key's configuration section.
#font_face: monospace # The font to use. Defaults to monospace
#font_size: 12 # The font size. Defaults to 12
#stroke_width: 0.25 # The stroke width to apply to the font. Defaults to 0.25
key_color: # The key color. Defaults to Black (0,0,0,1)
r: 1.0
g: 1.0
b: 1.0
a: 1.0
val_color: # The value color. Defaults to Black (0,0,0,1)
r: 1.0
g: 1.0
b: 0.0
a: 1.0
# Individual stat configs
stat_configs:
- key: User_Name # XML element name for the statistic.
type: user # Type of statistic (user, team, status)
name: " User: " # Display name for this key.
# use_commas: False # Insert commas every three characters? Defaults to False
position_offset: # lower left corner of the output for this statistic
x: 12 # as offset from the position_origin
y: 20
- key: Team_Rank
type: user
name: " Rank on Team: "
use_commas: True
position_offset:
x: 12
y: 32
- key: Points_24hr_Avg
type: team
name: " Team Daily Avg: "
use_commas: True
position_offset:
x: 203
y: 68
- key: Points_Today
type: team
name: " Points Today: "
use_commas: True
position_offset:
x: 203
y: 80
- key: Users
type: team
name: " Total Users: "
use_commas: True
position_offset:
x: 203
y: 44
- key: Points
type: team
name: " Team Points: "
use_commas: True
position_offset:
x: 203
y: 56
- key: TeamID
type: team
name: " Team: "
position_offset:
x: 203
y: 20
- key: Team_Name
type: team
name: " "
position_offset:
x: 203
y: 20
- key: Rank
type: team
name: " Rank of Team: "
use_commas: True
position_offset:
x: 203
y: 32
- key: Overall_Rank
type: user
name: " Overall Rank: "
use_commas: True
position_offset:
x: 12
y: 44
- key: WUs
type: user
name: " User WUs: "
use_commas: True
position_offset:
x: 12
y: 80
- key: Points
type: user
name: " User Points: "
use_commas: True
position_offset:
x: 12
y: 56
- key: Points_24hr_Avg
type: user
name: " User Daily Avg: "
use_commas: True
position_offset:
x: 12
y: 68