Note Snooze

by Gabriel
5
4
3
2
1
Score: 47/100

Description

Hide notes from the file explorer until a date specified in a frontmatter property.

Reviews

No reviews yet.

Stats

0
stars
35
downloads
0
forks
69
days
5
days
69
days
18
total PRs
4
open PRs
11
closed PRs
3
merged PRs
0
total issues
0
open issues
0
closed issues
10
commits

Latest Version

2 months ago

Changelog

[1.0.1] - 2026-07-13

Bug Fixes

  • Problems found in the first execution of Obsidian official automatic review

Build & Dependencies

  • Set npm version commit message to match release convention

README file from

Github

obsidian-note-snooze

Hide notes from the file explorer until a date specified in a frontmatter property.

Install

From the Community Plugins browser

  1. In Obsidian, open Settings → Community plugins → Browse.
  2. Search for Note Snooze.
  3. Select Install, then Enable.

Manual installation

  1. Download main.js, manifest.json, and styles.css from the latest release.
  2. Copy them into <your-vault>/.obsidian/plugins/note-snooze/.
  3. Reload Obsidian and enable Note Snooze under Settings → Community plugins.

From source

The Node.js version is pinned via mise; run mise install first if you have it, otherwise use the Node version in .mise.toml directly.

git clone https://github.com/turingexmachina/obsidian-note-snooze.git
cd obsidian-note-snooze
npm install
npm run build

Then copy main.js, manifest.json, and styles.css into <your-vault>/.obsidian/plugins/note-snooze/.

Usage

Add the property to a note's frontmatter:

---
hidden-until: 2026-08-01
---

The note disappears from the file explorer until 2026-08-01 (local time), then reappears automatically — no reload needed.

Settings

  • Hidden-until property — the frontmatter property name to check. Defaults to hidden-until.

Notes

  • Only the file explorer is affected. The note is otherwise unchanged: still searchable, still openable via Quick Switcher/links, still fully readable.
  • Missing property, empty value, or an unparseable date all mean "not hidden".
  • Accepts plain dates (2026-08-01) as well as full datetimes.

Contributing

Questions and bug reports are welcome via GitHub Issues on this repository. Pull requests are welcome too.

License

MIT © turingexmachina