You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

351 lines
4.5 KiB

3 years ago
---
Alias: ["Life Orga", "Life Hacks"]
2 years ago
Tag: ["🤖", "🕴️","🎯"]
3 years ago
Date: 2021-08-12
DocType: "Personal"
ChildrenType:
- Task
- Note
Hierarchy: "Root"
TimeStamp: 2021-08-12
location: [51.514678599999996, -0.18378583926867909]
CollapseMetaTable: true
3 years ago
---
 
```button
name Create Task
type append template
action NewFile
id CreateNote
```
^button-LifeOrgaNewTask
```button
name Save
type command
action Save current file
id Save
```
^button-LifeOrgaSave
 
# Life Organisation
 
```ad-abstract
title: Summary
collapse: open
This space centralises all tasks and to-dos!
```
 
```toc
style: number
```
 
---
 
### Task list
 
```dataviewjs
const {taskFunc} = customJS
taskFunc.getAllTasks({app, dv, luxon, that:this, theme: "LifeHacks"})
```
 
#### Review overdue
```dataviewjs
const {taskFunc} = customJS
taskFunc.getLateReviewTasks({app, dv, luxon, that:this, theme: "LifeHacks"})
```
 
#### Delivery overdue
```dataviewjs
const {taskFunc} = customJS
taskFunc.getOverdueTasks({app, dv, luxon, that:this, theme: "LifeHacks"})
```
 
#### Priority tasks
```dataviewjs
const {taskFunc} = customJS
taskFunc.getPriorityTasks({app, dv, luxon, that:this, theme: "LifeHacks"})
```
 
---
 
### Todo list
 
3 years ago
**[[@Life Admin]]**
3 years ago
```ad-task
~~~tasks
not done
path includes Life Admin
description does not include :birthday:
description does not include :gift:
sort by due
hide backlink
hide task count
~~~
```
 
3 years ago
**[[@Family]]**
3 years ago
```ad-task
~~~tasks
not done
path includes Family
description does not include :birthday:
description does not include :gift:
sort by due
hide backlink
hide task count
~~~
```
 
3 years ago
**[[@Personal projects]]**
3 years ago
```ad-task
~~~tasks
not done
path includes Personal projects
description does not include :birthday:
description does not include :gift:
sort by due
hide backlink
hide task count
~~~
```
 
3 years ago
**[[@Lifestyle]]**
3 years ago
```ad-task
~~~tasks
not done
path includes lifestyle
description does not include :birthday:
description does not include :gift:
sort by due
hide backlink
hide task count
~~~
```
 
3 years ago
**[[Creations]]**
```ad-task
~~~tasks
not done
description includes :fountain_pen:
description does not include :birthday:
description does not include :gift:
sort by due
hide backlink
hide task count
~~~
```
 
3 years ago
**[[@IT & Computer]]**
3 years ago
```ad-task
~~~tasks
not done
path includes IT & Computer
description does not include :birthday:
description does not include :gift:
sort by due
hide backlink
hide task count
~~~
```
 
3 years ago
**[[@Finances]]**
3 years ago
```ad-task
~~~tasks
not done
path includes Finance
path does not include Ledger
description does not include :birthday:
description does not include :gift:
sort by due
hide backlink
hide task count
~~~
```
 
#### Overdue Todos
```dataview
task from [[@Life Organisation]]
where DocType = "Task" and DueDate < date(today)
```
&emsp;
#### Urgent Todos
```dataview
task from [[@Life Organisation]]
where DocType = "Task" and DueDate < date(today) + dur(3 days)
```
&emsp;
#### High priority
```dataview
Task from [[@Life Organisation]]
Where DocType = "Task" and Priority = "High" and DueDate >= date(today)
```
&emsp;
#### Closed To-dos
3 years ago
**[[@Life Admin]]**
3 years ago
```ad-task
collapse: closed
~~~tasks
done
path includes Life Admin
description does not include :birthday:
description does not include :gift:
sort by due
hide backlink
hide task count
~~~
```
&emsp;
3 years ago
**[[@Family]]**
3 years ago
```ad-task
collapse: closed
~~~tasks
done
path includes Family
description does not include :birthday:
description does not include :gift:
sort by due
hide backlink
hide task count
~~~
```
&emsp;
3 years ago
**[[@Personal projects]]**
3 years ago
```ad-task
collapse: closed
~~~tasks
done
path includes Personal projects
description does not include :birthday:
description does not include :gift:
sort by due
hide backlink
hide task count
~~~
```
&emsp;
3 years ago
**[[@Lifestyle]]**
3 years ago
```ad-task
collapse: closed
~~~tasks
done
path includes Lifestyle
description does not include :birthday:
description does not include :gift:
sort by due
hide backlink
hide task count
~~~
```
&emsp;
3 years ago
**[[@IT & Computer]]**
3 years ago
```ad-task
collapse: closed
~~~tasks
done
path includes IT & Computer
description does not include :birthday:
description does not include :gift:
sort by due
hide backlink
hide task count
~~~
```
&emsp;
3 years ago
**[[@Finances]]**
3 years ago
```ad-task
collapse: closed
~~~tasks
done
path includes Finances
path does not include Ledger
description does not include :birthday:
description does not include :gift:
sort by due
hide backlink
hide task count
~~~
```
&emsp;
&emsp;