Get AI summaries of any video or article — Sign up free
Note Toolbar: The Plugin Every Obsidian Mobile User Must Have thumbnail

Note Toolbar: The Plugin Every Obsidian Mobile User Must Have

Prakash Joshi Pax·
5 min read

Based on Prakash Joshi Pax's video on YouTube. If you like this content, support the original creators by watching, liking and subscribing to their content.

TL;DR

Note Toolbar pins a customizable toolbar to the top of Obsidian notes, making common actions faster on mobile.

Briefing

Note Toolbar is an Obsidian plugin built to keep frequently used actions within thumb reach—by pinning a customizable toolbar at the top of notes. Instead of digging through menus or repeating multi-click workflows on mobile, users can add one-tap commands, file links, and URLs directly into a persistent toolbar. The payoff is most obvious on phones: creating a note from a template, jumping to daily notes, opening dashboards, or closing a note can otherwise require several taps in sequence.

A typical setup starts with creating a toolbar and giving it a unique name. Each toolbar item can be configured with an icon (or a label), a tooltip, and a target type: URL, file, or command. For example, one toolbar can include a link that creates a new note from a template via a command, a command to open today’s daily note, a command to open a task dashboard, and a close-note action. The plugin also supports light/dark switching commands, letting the toolbar act as a control panel rather than just navigation.

The plugin’s display rules determine where the toolbar appears. One approach uses a note property: when a note contains a property like “node toolbar: M toolbar,” the toolbar shows up on that specific note. Another approach uses folder mappings, which apply a toolbar across an entire folder (or set of folders). This matters when different note types need different toolbars—for instance, a general toolbar on “Home” notes versus a specialized toolbar on daily journals.

The transcript walks through stacking multiple toolbars for different contexts. After creating a daily-focused toolbar (with items like previous day, next day, weekly note, and links back to home), folder mapping is used to apply it to journal folders. When both toolbars apply to the same note, ordering becomes important: the daily toolbar can be moved above the general toolbar so it appears first.

Beyond touch navigation, Note Toolbar adds keyboard support. Hotkeys can be assigned for “note toolbar focus,” enabling users to move focus to the toolbar and then use arrow keys to select items—useful even on desktop when speed matters.

Finally, the plugin supports “call outs,” which allow toolbars to be embedded anywhere inside a note rather than only at the top. Using the toolbar call out syntax, users can place a toolbar mid-page, style it (including button-like appearance and borders), and even render dynamic content such as bookmarks via a data view query inside the toolbar area. The result is a flexible pattern: persistent mobile controls at the top, plus on-demand toolbars embedded throughout notes for dashboards, navigation, and quick access lists.

Cornell Notes

Note Toolbar for Obsidian creates customizable toolbars that stay visible at the top of notes, letting users trigger commands, open files, and follow URLs with one tap—especially helpful on mobile where multi-click workflows are slow. Toolbars are built from items configured as URL, file, or command targets, with icons, tooltips, and optional styling. Visibility is controlled either by note properties (show toolbar only when a note has a matching “node toolbar” property) or by folder mappings (apply toolbars across entire folders). Multiple toolbars can be stacked and reordered, and hotkeys can shift focus to the toolbar for keyboard navigation. “Toolbar call outs” extend the idea by embedding toolbars anywhere in a note, including styled button layouts and dynamic bookmark lists via data view queries.

How does Note Toolbar reduce friction on Obsidian mobile compared with manual navigation?

It pins a toolbar to the top of notes so common actions—like creating a note from a template, opening today’s daily note, jumping to a task dashboard, or closing the current note—can be triggered directly from toolbar buttons. On phones, this avoids repeated multi-tap sequences (often several clicks just to reach template-based creation or daily-note navigation).

What are the main ways to define what appears inside a toolbar item?

Each toolbar item can be configured with an icon (or label), a tooltip, and a target type: URL, file, or command. For command items, the setup searches for the relevant command (e.g., template creation via templater, daily note via journals, close-current-tab via the plugin’s command).

How can a toolbar be shown only on specific notes versus across a whole folder?

Use display rules. With note properties, the note must include a property like “node toolbar: M toolbar” (where the property name matches the toolbar name) to show that toolbar only on that note. With folder mappings, the toolbar is applied to all notes in selected folders; mapping a toolbar name to a folder makes it appear across those notes.

What happens when multiple toolbars apply to the same note, and how is the order controlled?

When both a general toolbar (e.g., “M toolbar”) and a daily toolbar are mapped to the same note type, both can appear at the top. The plugin allows reordering so the daily toolbar can be moved above the general toolbar, ensuring the most relevant controls appear first.

How does keyboard control work for toolbars?

Hotkeys can be assigned for “note toolbar focus.” After focusing the toolbar (e.g., via a chosen key combination), users can navigate toolbar items using keyboard arrow keys rather than moving the mouse or tapping the screen.

What are toolbar call outs, and how do they differ from top-of-note toolbars?

Toolbar call outs embed a toolbar at a chosen location inside a note, not only at the top. Using the toolbar call out syntax, users can place toolbars mid-note, apply styles like borders or button-like layouts, and even include dynamic content such as bookmarks by embedding a data view query that renders inside the toolbar area.

Review Questions

  1. When would you choose note properties over folder mappings for displaying a toolbar, and what exact property naming pattern is required?
  2. Describe how you would build a toolbar item that opens yesterday’s note if your setup uses the journals plugin rather than daily notes.
  3. How can toolbar call outs be used to create a dynamic bookmarks toolbar, and what role does a data view query play?

Key Points

  1. 1

    Note Toolbar pins a customizable toolbar to the top of Obsidian notes, making common actions faster on mobile.

  2. 2

    Toolbar items can target URLs, files, or commands, and each item can be given an icon/label plus a tooltip.

  3. 3

    Visibility can be controlled per note using a “node toolbar” property or across folders using folder mappings.

  4. 4

    Multiple toolbars can be stacked on the same note, and their display order can be adjusted so the most relevant toolbar appears first.

  5. 5

    Hotkeys can shift focus to the toolbar, enabling keyboard navigation with arrow keys.

  6. 6

    Toolbar call outs let users embed toolbars anywhere in a note and apply styling such as borders or button-like layouts.

  7. 7

    Dynamic toolbars are possible by combining toolbar call outs with data view queries (e.g., rendering bookmarks).

Highlights

On mobile, the plugin turns multi-tap workflows—like template-based note creation and daily-note navigation—into single-tap toolbar actions.
Folder mappings and note properties provide two distinct ways to control where toolbars appear, enabling different toolbars for different note types.
Hotkeys for “note toolbar focus” allow keyboard-driven toolbar navigation without relying on mouse interaction.
Toolbar call outs extend the concept beyond the top bar, enabling styled, embedded toolbars and even bookmark lists via data view queries.

Topics