Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kepano/obsidian-hider
Hide Obsidian UI elements such as tooltips, status, titlebar and more
https://github.com/kepano/obsidian-hider
obsidian obsidian-md obsidian-plugin
Last synced: 5 days ago
JSON representation
Hide Obsidian UI elements such as tooltips, status, titlebar and more
- Host: GitHub
- URL: https://github.com/kepano/obsidian-hider
- Owner: kepano
- License: mit
- Created: 2020-11-14T18:30:53.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2024-08-25T21:34:12.000Z (4 months ago)
- Last Synced: 2024-12-01T01:03:47.263Z (12 days ago)
- Topics: obsidian, obsidian-md, obsidian-plugin
- Language: TypeScript
- Homepage:
- Size: 66.4 KB
- Stars: 393
- Watchers: 5
- Forks: 13
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - kepano/obsidian-hider - Hide Obsidian UI elements such as tooltips, status, titlebar and more (TypeScript)
README
Support the development of my plugins and themes **@kepano** on [Twitter](https://www.twitter.com/kepano) or [Buy me a coffee](https://www.buymeacoffee.com/kepano).
## Overview
This plugin enables you to hide certain parts of the Obsidian UI. Note that your CSS theme may override Hider.
- Hide app ribbon (can be bound to a hotkey)
- Hide tab bar (can be bound to a hotkey)
- Hide status bar (can be bound to a hotkey)
- Hide vault name
- Hide scrollbars
- Hide search suggestions
- Hide count of search term matches
- Hide tooltips
- Hide instructions in prompts
- Hide metadata in Reading view## Making your theme compatible with Hider
Hider injects the following classes on the `body` element when features are toggled on.
| Toggle | Class |
| ------ | ----- |
| App ribbon | `.hider-ribbon` |
| Status bar | `.hider-status` |
| Tab bar | `.hider-tabs` |
| Vault name | `.hider-vault` |
| Scrollbars | `.hider-scroll` |
| Search suggestions | `.hider-search-suggestions` |
| Search term counts | `.hider-search-counts` |
| Tooltips | `.hider-tooltips` |
| Instructions | `.hider-instructions` |
| Metadata | `.hider-meta` |