forked from Gnopps/ObsidianScripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDashboard
108 lines (105 loc) · 1.79 KB
/
Dashboard
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
---
cssclass: maxWidth, dashboard
---
````ad-dashb
title: Today
color: 245, 229, 12
icon: calendar-today
- ## ☝️ Must do today
```tasks
not done
due before in 1 day
hide start date
hide due date
hide scheduled date
hide edit button
```
- ## 🤝🏼 Meetings
```dataview
list WITHOUT ID project + " - " + "[["+file.name+"]]"
FROM #meeting and -#held
WHERE contains(date(Date), date(today))
```
- ## 📮 Inbox
```tasks
not done
no due date
description does not include #
no scheduled date
path does not include Templates
```
````
````ad-dashb
title: Work
icon: briefcase
- ## 💪 Try to do today
```tasks
not done
scheduled before in 1 day
hide start date
hide due date
hide scheduled date
hide edit button
limit 5
```
- ## 📅 Upcoming
```tasks
not done
due before in 3 days
due after in 0 days
hide start date
hide scheduled date
hide edit button
limit 5
```
- ## 🍅 Pomodoros
```tracker
searchType: text
searchTarget: 🍅
folder: /
startDate: -6d
endDate: 0d
accum: true
penalty: 0
fitPanelWidth: true
line:
showLine: true
yAxisLabel: Nbr
xAxisLabel: Date
yMin: 0
fillGap: true
```
````
````ad-dashb
title: All todos
icon: list
collapse: true
color: 3, 135, 36
- ## 🆙 With due-date
```tasks
not done
due after 1999-01-01
hide edit button
hide start date
limit 5
```
- ## ⬜ Other tasks
```tasks
not done
scheduled before in 90 days
scheduled after in 1 days
hide edit button
hide start date
limit 5
```
````
````ad-dashb
title: Recent cases
color: 0, 169, 206
icon: file-contract
```dataview
table without id ("![](" + logo + ")") as "", ("[[" + file.name + "]]") as Name, Products, AE, file.mday AS "Last edit"
WHERE file.mday >= date(today) - dur(14 day) AND file.folder != "Templates" AND AE != null
SORT file.mtime DESCENDING
```
````