Obsidian Application Configuration
Sources
Overview
URI Reference
NOTE
A *Uniform Resource Identifier is a unique sequence of characters that identifies a logical or physical resource used by web technologies. See Uniform Resource Identifier (URI) for more details.
- The Default Obsidian
URI
: Obsidian - URI Scheme for controlling Obsidian - The Advanced URI Community Plugin for controlling Obsidian
- The Hotkey Helper Community Plugin uses its own
Hotkey Helper URI
(pjeby/hotkey-helper (github.com)) - URI Schemes are generally practical, since they also work on any platform, including mobile.
- URLs must be properly encoded. The
Advanced URI Plugin: Copy Command URI
already applies proper URL encoding. - In JavaScript, the functions
encodeURIComponent()
andencodeURI()
are used for encoding.
Application Data
Obsidian Data | How to access | How to control |
---|---|---|
Vaults | %LOCALAPPDATA%/obsidian/obsidian.json | |
Enabled Core Plugins | {vaultPath}/.obsidian/core-plugins.json | |
Current Theme | {vaultPath}/.obsidian/appearance.json | Theme Switcher Command (via Adv. URI) |
Enabled CSS Snippets | {vaultPath}/.obsidian/appearance.json | Renaming a snippet located in "{vaultPath}/.obsidian/snippets/" basically works as a OFF-Switch, since CSS is live-reloaded by Obsidian. (renaming the file back, would be the on-switch) |
Base Font Size | {vaultPath}/.obsidian/appearance.json | |
Workspaces | {vaultPath}/.obsidian/workspaces.json | Open Workspace (Adv. URI) |
Tags | Metadata-Extractor-Plugin | Open / Search (URI) |
Aliases | Metadata-Extractor-Plugin | Open (URI) |
Headings | Metadata-Extractor-Plugin | Open Heading (Adv. URI) |
Recent Files (up to 10) | {vaultPath}/.obsidian/workspace (last item) | Open (URI) |
Starred Files | {vaultPath}/.obsidian/starred.json | Open (URI) |
Index of Vault | find "{vaultPath}" -name "*.md" (shell) | Open (URI) |
Plugins in Community Browser | https://raw.githubusercontent.com/obsidianmd/obsidian-releases/master/community-plugin.json | Hotkey Helper URI |
Downloads & Versions of Plugins | https://raw.githubusercontent.com/obsidianmd/obsidian-releases/master/community-plugin-stats.json | Hotkey Helper URI |
Themes in Community Browser | https://raw.githubusercontent.com/obsidianmd/obsidian-releases/master/community-css-themes.json | |
Installed Plugins | ls -1 "{vaultPath}/.obsidian/plugins/" (shell) | Hotkey Helper URI |
Installed Themes | ls -1 "{vaultPath}/.obsidian/themes/" (shell) | |
Installed CSS Snippets | ls -1 "{vaultPath}/.obsidian/snippets/" (shell) |