parent
5fac6f30db
commit
970e18e8d9
@ -0,0 +1,38 @@
|
||||
{
|
||||
"firstRun": false,
|
||||
"initialized": [
|
||||
{
|
||||
"path": "/",
|
||||
"initialized": true
|
||||
}
|
||||
],
|
||||
"trackedProjects": [
|
||||
"/"
|
||||
],
|
||||
"checkpointList": [
|
||||
{
|
||||
"path": "/",
|
||||
"date": "2022-01-08",
|
||||
"size": 686748
|
||||
}
|
||||
],
|
||||
"activityHistory": [
|
||||
{
|
||||
"path": "/",
|
||||
"size": [
|
||||
{
|
||||
"date": "2022-01-08",
|
||||
"value": 3642
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"activityColor1": "#c6e48b",
|
||||
"activityColor2": "#7bc96f",
|
||||
"activityColor3": "#239a3b",
|
||||
"activityColor4": "#196127",
|
||||
"textColor": "#000000",
|
||||
"emptyColor": "#ecedf0",
|
||||
"cellRadius": 1,
|
||||
"type": "yearly"
|
||||
}
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,10 @@
|
||||
{
|
||||
"id": "obsidian-activity-history",
|
||||
"name": "Activity History",
|
||||
"version": "0.1.4",
|
||||
"minAppVersion": "0.10.11",
|
||||
"description": "Track activity of specified projects, Github like activity board",
|
||||
"author": "darakah",
|
||||
"authorUrl": "https://github.com/Darakah/",
|
||||
"isDesktopOnly": false
|
||||
}
|
@ -0,0 +1,30 @@
|
||||
.block-language-ActivityHistory {
|
||||
margin: 1rem 0;
|
||||
}
|
||||
|
||||
.selectYear {
|
||||
border-color: none;
|
||||
}
|
||||
|
||||
.HistoryBoard {
|
||||
background-color: transparent !important;
|
||||
padding: 10px;
|
||||
border-radius: 14px;
|
||||
width: auto;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.ObsidianHistoryBlock {
|
||||
background-color: transparent !important;
|
||||
border-radius: 14px;
|
||||
width: auto;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.selectYear {
|
||||
margin: 10px !important;
|
||||
border-radius: 0 !important;
|
||||
border-color: transparent !important;
|
||||
background: #1b1b1b;
|
||||
color: rgb(201, 201, 201);
|
||||
}
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,10 +0,0 @@
|
||||
{
|
||||
"id": "obsidian-citation-plugin",
|
||||
"name": "Citations",
|
||||
"version": "0.4.4",
|
||||
"minAppVersion": "0.9.20",
|
||||
"description": "Automatically search and insert citations from a Zotero library",
|
||||
"author": "Jon Gauthier",
|
||||
"authorUrl": "http://foldl.me",
|
||||
"isDesktopOnly": false
|
||||
}
|
@ -1,114 +0,0 @@
|
||||
/** Citations modal **/
|
||||
|
||||
/*
|
||||
* Loading animation from
|
||||
* https://loading.io/css/
|
||||
*/
|
||||
.zoteroModalLoading {
|
||||
color: var(--text-muted);
|
||||
text-align: center;
|
||||
}
|
||||
.zoteroModalLoadingAnimation {
|
||||
display: inline-block;
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
}
|
||||
.zoteroModalLoadingAnimation {
|
||||
content: " ";
|
||||
display: block;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
margin: 10px auto;
|
||||
border-radius: 50%;
|
||||
border: 3px solid #eee;
|
||||
border-color: #eee transparent #eee transparent;
|
||||
animation: lds-dual-ring 1.2s linear infinite;
|
||||
}
|
||||
@keyframes lds-dual-ring {
|
||||
0% {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
#zoteroSettingTab .text-monospace {
|
||||
font-family: monospace;
|
||||
}
|
||||
|
||||
.zoteroModalResults .suggestion-item {
|
||||
height: fit-content;
|
||||
line-height: 1.5rem;
|
||||
}
|
||||
|
||||
.zoteroTitle {
|
||||
font-size: 14px;
|
||||
display: block;
|
||||
}
|
||||
.zoteroAuthors {
|
||||
color: #555;
|
||||
font-size: 13px;
|
||||
}
|
||||
.zoteroAuthorsEmpty::after {
|
||||
font-style: italic;
|
||||
content: 'Unknown authors';
|
||||
}
|
||||
.zoteroCitekey {
|
||||
color: #555;
|
||||
font-size: 13px;
|
||||
font-family: monospace;
|
||||
display: inline-block;
|
||||
margin-right: 5px;
|
||||
padding-right: 5px;
|
||||
border-right: 1px solid #ccc;
|
||||
}
|
||||
|
||||
.theme-dark .zoteroTitle {
|
||||
font-size: 14px;
|
||||
display: block;
|
||||
}
|
||||
.theme-dark .zoteroAuthors {
|
||||
color: #aaa;
|
||||
font-size: 13px;
|
||||
}
|
||||
.theme-dark .zoteroCitekey {
|
||||
color: #aaa;
|
||||
font-size: 13px;
|
||||
font-family: monospace;
|
||||
display: inline-block;
|
||||
margin-right: 5px;
|
||||
padding-right: 5px;
|
||||
border-right: 1px solid #aaa;
|
||||
}
|
||||
|
||||
/** Settings dialog **/
|
||||
.d-none {
|
||||
display: none;
|
||||
}
|
||||
.zoteroSettingCitationPathLoading,
|
||||
.zoteroSettingCitationPathError,
|
||||
.zoteroSettingCitationPathSuccess {
|
||||
font-size: 14px;
|
||||
}
|
||||
.zoteroSettingCitationPathLoading {
|
||||
color: var(--text-muted);
|
||||
}
|
||||
.zoteroSettingCitationPathError {
|
||||
color: var(--text-error);
|
||||
}
|
||||
.zoteroSettingCitationPathError:hover {
|
||||
color: var(--text-error-hover);
|
||||
}
|
||||
.zoteroSettingCitationPathSuccess {
|
||||
color: var(--text-accent);
|
||||
}
|
||||
.zoteroSettingCitationPathSuccess:hover {
|
||||
color: var(--text-accent-hover);
|
||||
}
|
||||
|
||||
#zoteroSettingTab textarea {
|
||||
resize: vertical;
|
||||
width: 100%;
|
||||
min-height: 10em;
|
||||
}
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,4 @@
|
||||
{
|
||||
"template_folder": "00.01 Admin/React",
|
||||
"auto_refresh": true
|
||||
}
|
File diff suppressed because one or more lines are too long
@ -0,0 +1,10 @@
|
||||
{
|
||||
"id": "obsidian-react-components",
|
||||
"name": "React Components",
|
||||
"version": "0.1.5",
|
||||
"minAppVersion": "0.13.14",
|
||||
"description": "This is a plugin for Obsidian. It allows you to write and use React components with Jsx inside your Obsidian notes.",
|
||||
"author": "Elias Sundqvist",
|
||||
"authorUrl": "https://github.com/elias-sundqvist",
|
||||
"isDesktopOnly": false
|
||||
}
|
@ -0,0 +1 @@
|
||||
Not Found
|
File diff suppressed because one or more lines are too long
@ -0,0 +1,10 @@
|
||||
{
|
||||
"id": "obsidian-stopwatch-plugin",
|
||||
"name": "Stopwatch Plugin",
|
||||
"version": "0.0.8",
|
||||
"minAppVersion": "0.9.12",
|
||||
"description": "Display stopwatch on Obsidian!",
|
||||
"author": "Tokuhiro Matsuno",
|
||||
"authorUrl": "https://64p.org",
|
||||
"isDesktopOnly": false
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
.stopwatch-time {
|
||||
font-size: 180%;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.settings-interval-alert {
|
||||
color: red;
|
||||
}
|
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 69 KiB |
After Width: | Height: | Size: 35 KiB |
After Width: | Height: | Size: 41 KiB |
After Width: | Height: | Size: 31 KiB |
@ -0,0 +1,13 @@
|
||||
const [date, setDate] = useState(new Date());
|
||||
useEffect(() => {
|
||||
var timerID = setInterval( () => setDate(new Date()), 1000 );
|
||||
return function cleanup() {
|
||||
clearInterval(timerID);
|
||||
};
|
||||
});
|
||||
return (
|
||||
<div>
|
||||
<p>Current date: <b>{date.toLocaleDateString()}</b></p>
|
||||
<p>Current time: <b>{date.toLocaleTimeString()}</b></p>
|
||||
</div>
|
||||
);
|
@ -1,101 +0,0 @@
|
||||
---
|
||||
|
||||
Alias: [""]
|
||||
Tag: [""]
|
||||
Date: 2021-11-20
|
||||
DocType:
|
||||
ChildrenType: "Task"
|
||||
Hierarchy: "Root"
|
||||
TimeStamp:
|
||||
location:
|
||||
CollapseMetaTable: Yes
|
||||
|
||||
---
|
||||
|
||||
Parent:: [[Life Admin]]
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
```button
|
||||
name Create Note
|
||||
type append template
|
||||
action NewFile
|
||||
id CreateNote
|
||||
```
|
||||
^button-DailytrackerNewTask
|
||||
|
||||
```button
|
||||
name Save
|
||||
type command
|
||||
action Save current file
|
||||
id Save
|
||||
```
|
||||
^button-DailytrackerSave
|
||||
|
||||
 
|
||||
|
||||
# Task Master
|
||||
|
||||
 
|
||||
|
||||
```ad-abstract
|
||||
title: Summary
|
||||
collapse: open
|
||||
This space centralises all tasks and to-dos in the vault.
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
```toc
|
||||
style: number
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### Today
|
||||
|
||||
 
|
||||
|
||||
```tasks
|
||||
not done
|
||||
due today
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### This week
|
||||
|
||||
 
|
||||
|
||||
```tasks
|
||||
not done
|
||||
due this week
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### Next week
|
||||
|
||||
 
|
||||
|
||||
```tasks
|
||||
not done
|
||||
due next week
|
||||
```
|
||||
|
||||
 
|
||||
 
|
@ -0,0 +1,156 @@
|
||||
---
|
||||
|
||||
Alias: ["Dashboard"]
|
||||
Date: 2021-11-20
|
||||
DocType: "Note"
|
||||
ChildrenType: ["Task", "Note"]
|
||||
Hierarchy: "Root"
|
||||
TimeStamp:
|
||||
location:
|
||||
CollapseMetaTable: Yes
|
||||
|
||||
---
|
||||
|
||||
Parent:: [[Life Admin]]
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
```button
|
||||
name Create Note
|
||||
type append template
|
||||
action NewFile
|
||||
id CreateNote
|
||||
```
|
||||
^button-DailytrackerNewTask
|
||||
|
||||
```button
|
||||
name Save
|
||||
type command
|
||||
action Save current file
|
||||
id Save
|
||||
```
|
||||
^button-DailytrackerSave
|
||||
|
||||
 
|
||||
|
||||
```jsx:
|
||||
<Clock />
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
# Main dashboard
|
||||
|
||||
 
|
||||
|
||||
```ad-abstract
|
||||
title: Summary
|
||||
collapse: open
|
||||
This space is the main dashboard of my vault.
|
||||
==WIP==
|
||||
- React stuff?
|
||||
- Recipes and/or other stuff?
|
||||
Kanban board for certain stuff?
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
```toc
|
||||
style: number
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### Next 5 birthdays
|
||||
|
||||
 
|
||||
|
||||
```tasks
|
||||
not done
|
||||
path includes Family
|
||||
description includes :birthday:
|
||||
limit to 5 tasks
|
||||
sort by due
|
||||
hide backlink
|
||||
hide task count
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### Main tasks
|
||||
|
||||
 
|
||||
|
||||
#### Tasks
|
||||
|
||||
```dataviewjs
|
||||
const {taskFunc} = customJS
|
||||
taskFunc.getAllTasks({app, dv, luxon, that:this, theme: "LifeHacks"})
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
#### Next 5 recurring to-dos
|
||||
|
||||
```tasks
|
||||
not done
|
||||
is recurring
|
||||
description does not include :birthday:
|
||||
sort by due
|
||||
limit to 5 tasks
|
||||
hide backlinks
|
||||
hide task count
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
#### Next 5 one-off to-dos
|
||||
|
||||
```tasks
|
||||
not done
|
||||
is not recurring
|
||||
limit to 5 tasks
|
||||
hide backlinks
|
||||
hide task count
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### Current book
|
||||
|
||||
 
|
||||
|
||||
```dataview
|
||||
Table without id "![](" + Source.Cover + ")" as "Cover", file.link as "Title", Source.Author as "Author", Source.Published as "Publication Date", Source.Language as "Language"
|
||||
where Source.Type = "Book"
|
||||
where ReadingState = "In progress"
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### Obsidian Activity
|
||||
|
||||
```ActivityHistory
|
||||
/
|
||||
```
|
||||
|
||||
 
|
||||
 
|
Loading…
Reference in new issue