Skip to content

Commit

Permalink
Add example note vault and screenshot
Browse files Browse the repository at this point in the history
  • Loading branch information
brendanmurty committed Sep 26, 2024
1 parent 9d0fdf0 commit a717658
Show file tree
Hide file tree
Showing 11 changed files with 95 additions and 9 deletions.
21 changes: 13 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
# Ignore sensitive files
config/bookmarks.json
config/starred.json
config/workspace
config/workspace.json
config/workspaces.json
config/publish.json
config/graph.json
config/types.json
config/plugins/*/data.json

# Allow specific non-sensitive files
!config/plugins/calendar/data.json
!config/plugins/dataview/data.json
!config/plugins/homepage/data.json
!config/plugins/customizable-page-header-buttons/data.json
!config/plugins/obsidian-minimal-settings/data.json
!config/plugins/obsidian-show-file-path/data.json

config/bookmarks.json
config/starred.json
config/workspace
config/workspace.json
config/workspaces.json
config/publish.json
config/graph.json
config/types.json
# Ignore configuration directory in the example note vault
example/.obsidian
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

The files in this folder are for customising [Obsidian](https://obsidian.md/).

## Preview

Here's some previews of Obsidian running with these settings using the vault in the [example directory](example).

![Screenshot of Obsidian running with these customisations applied](docs/example1.png)

## Setup

1. Install and open [Obsidian](https://obsidian.md/)
Expand All @@ -19,4 +25,4 @@ The files in this folder are for customising [Obsidian](https://obsidian.md/).

To update the config files here from the config files in your vault configuration directory, run the [update script](update.sh):

`bash update.sh`
`bash update.sh`
Binary file added docs/example1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions example/Dashboard.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Dashboard

## Daily items

![[Daily items in calendar view]]

## Recent notes

![[Recent notes]]
20 changes: 20 additions & 0 deletions example/Personal/Daily/20240926.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
mood:
- normal
sleep-quality:
- good
sleep-start: 2024-09-25T22:30:00
sleep-end: 2024-09-26T07:00:00
---
# Thursday, 26 September 2024

## Actions and Notes

- [x] Take the bins out
- [ ] Mow the lawn

![](yes.gif)

## Goals

-
Binary file added example/Personal/Daily/Attachments/yes.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions example/Queries/Daily items in calendar view.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
```dataview
CALENDAR file.day
FROM "Personal/Daily"
```
7 changes: 7 additions & 0 deletions example/Queries/Daily items in list view.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
```dataview
table without id
file.link as Entry,
file.ctime as Created
from "Personal/Daily"
sort file.ctime desc
```
6 changes: 6 additions & 0 deletions example/Queries/Recent notes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
```dataview
LIST
FROM ""
SORT file.mtime desc
LIMIT 25
```
12 changes: 12 additions & 0 deletions example/Templates/BoardItem.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@

#

## Actions

- [ ]

## Notes

-


17 changes: 17 additions & 0 deletions example/Templates/DailyItem.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
mood:
sleep-quality:
sleep-start:
sleep-end:
---
# {{date:dddd, D MMMM YYYY}}

## Actions and Notes

- [ ]

-

## Goals

-

0 comments on commit a717658

Please sign in to comment.