A lightweight macOS menu bar app that brings your Obsidian notes to your fingertips-just like “Quick Notes” with active screen corners. Select any .md file in the settings, then hover your cursor over one of the screen’s corners. A floating preview window renders your Markdown document on top of all other windows, and a single click opens the note in Obsidian.
Hover into the corner → preview appears → click to open in Obsidian.
The pencil icon in the menu bar opens the settings panel.
⚙️ Settings
- Markdown File: Choose your
.mdfile via the standard file picker. - Preview Lines / Width: Adjust how many lines are shown and the width of the preview window.
- Hot Corners: Enable one or more corners (top-left, top-right, bottom-left, bottom-right).
- Click to Open: Open the note in Obsidian using the
obsidian://URL scheme. - Keyboard Shortcut: Assign a custom shortcut to toggle the preview on and off.
- Launch at Login: Enable “Open at Login,” implemented via a Launch Agent (
~/Library/LaunchAgents). The app will appear in System Settings → General → Login Items (you can disable it there).
Install:
brew install --cask nbox/tap/obsidian-hot-corner-mdUninstall:
brew uninstall --cask --zap obsidian-hot-corner-mdReleases: https://github.com/nbox/ObsidianHotCornerMD/releases
Install from DMG:
- Download the latest
.dmgfrom the Releases page. - Open the
.dmgto mount it. You will seeObsidianHotCornerMD.appand anApplicationsshortcut. - Drag
ObsidianHotCornerMD.apponto theApplicationsshortcut. - Eject the mounted DMG.
- Launch the app from Applications — the menu bar icon will appear. Open Settings, choose your Markdown file, enable desired corners, adjust width/lines, assign a hotkey, and (optionally) enable launch at login.
Option 1: Allow in System Settings -> Privacy & Security
- Try to open the app.
- Open System Settings -> Privacy & Security.
- Under the warning about Obsidian Hot Corner Preview, click Open Anyway.
- Confirm by clicking Open.
Option 2: Remove the quarantine attribute, run:
xattr -dr com.apple.quarantine "/Applications/ObsidianHotCornerMD.app"This project is licensed under the MIT License.
- Xcode: 16.1 or newer
- Swift: 5.x (as provided by Xcode)
- macOS target: 12.4+ (configurable in the project settings)
Steps:
- Open
ObsidianHotCornerMD.xcodeprojin Xcode. - Select the
ObsidianHotCornerMDscheme and a “My Mac” destination. - Build and run.
Release (archive):
- In Xcode, Product → Archive (Release configuration).
- Alternatively, push a tag
vX.Y.Zto let GitHub Actions build and attach a.dmgto the corresponding Release.