-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
wth.yaml
94 lines (84 loc) · 1.99 KB
/
wth.yaml
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
modules:
- id: "example01"
name: "Example"
path: "./modules/example/example.so"
enabled: true
config:
output: "Hello World"
refreshInterval: "1s"
- id: "worldclocks"
name: "World Clocks"
path: "./modules/worldclocks/worldclocks.so"
enabled: true
config:
timezones: "Pacific/Honolulu;America/Panama;America/New_York;Etc/UTC;Europe/Berlin;Asia/Bangkok;Asia/Tokyo;Australia/Melbourne;Pacific/Auckland"
timeformat: "15"
refreshInterval: "60s"
- id: "ratesx-xmr"
name: "rate.sx: XMR"
path: "./modules/command/command.so"
enabled: true
config:
command: "curl -s rate.sx/xmr"
refreshInterval: "60s"
- id: "ratesx-btc"
name: "rate.sx: BTC"
path: "./modules/command/command.so"
enabled: true
config:
command: "curl -s rate.sx/btc"
refreshInterval: "60s"
- id: "psa"
name: "Command"
path: "./modules/command/command.so"
enabled: true
config:
command: "/bin/ps a -o pid,comm"
refreshInterval: "60s"
- id: "dmesg"
name: "Command"
path: "./modules/command/command.so"
enabled: true
config:
command: "dmesg -t"
refreshInterval: "60s"
- id: "chafa"
name: "Command"
path: "./modules/command/command.so"
enabled: true
config:
command: "task minimal tag:tools"
refreshInterval: "60s"
layout:
rows:
# First row
- cells:
# First cell (from left to right)
- moduleId: "worldclocks"
ratioX: 4
ratioY: 3
# Second cell
- moduleId: "ratesx-xmr"
ratioX: 4
ratioY: 3
# Third cell
- moduleId: "ratesx-btc"
ratioX: 4
ratioY: 3
# Second row
- cells:
# First cell (from left to right)
- moduleId: "psa"
ratioX: 4
ratioY: 3
# Second cell
- moduleId: "dmesg"
ratioX: 4
ratioY: 3
# Third cell
- moduleId: "chafa"
ratioX: 4
ratioY: 3
log:
file: "wth.log"
level: "debug"