-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTaskfile.yml
More file actions
50 lines (39 loc) · 785 Bytes
/
Taskfile.yml
File metadata and controls
50 lines (39 loc) · 785 Bytes
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
version: '3'
includes:
battery:
taskfile: battery/Taskfile.yml
dir: battery
cpu:
taskfile: cpu/Taskfile.yml
dir: cpu
fuzzytime:
taskfile: fuzzytime/Taskfile.yml
dir: fuzzytime
mem:
taskfile: mem/Taskfile.yml
dir: mem
mem:
taskfile: mem/Taskfile.yml
dir: mem
time:
taskfile: time/Taskfile.yml
dir: time
uptime:
taskfile: uptime/Taskfile.yml
dir: uptime
weather:
taskfile: weather/Taskfile.yml
dir: weather
tasks:
sizes:
cmds:
- du -shc **/*.wasm
plugins:
cmds:
- task: battery:default
- task: cpu:default
- task: fuzzytime:default
- task: mem:default
- task: time:default
- task: uptime:default
- task: weather:default