Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/frostplexx/obsidian-touchbar-macros
Easily create macros and add them to your Touch Bar in Obsidian MD!
https://github.com/frostplexx/obsidian-touchbar-macros
obsidian-md obsidian-plugin
Last synced: 8 days ago
JSON representation
Easily create macros and add them to your Touch Bar in Obsidian MD!
- Host: GitHub
- URL: https://github.com/frostplexx/obsidian-touchbar-macros
- Owner: frostplexx
- License: mit
- Created: 2023-06-19T14:22:55.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-12-16T02:06:45.000Z (about 1 month ago)
- Last Synced: 2024-12-16T03:18:42.110Z (about 1 month ago)
- Topics: obsidian-md, obsidian-plugin
- Language: TypeScript
- Homepage:
- Size: 2.06 MB
- Stars: 13
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Obsidian Touch Bar Macros
This is a plugin for [Obsidian](https://obsidian.md/) that adds Touch Bar support.## Features
- Add custom items to your Touch Bar
- Do anything faster with macros
- Perform your favorite actions with a single touch
- Customize the color of your Touch Bar items## Screenshots
![Screenshot 2023-06-20 at 18 41 33](https://github.com/Frostplexx/obisdian-mac-touchbar/assets/62436912/59981b82-ff03-4bea-a763-1c69b8b48880)
https://github.com/Frostplexx/obisdian-mac-touchbar/assets/62436912/fe467348-ffcf-4ae3-87bd-ac01ae8c26c1
## Installation
### From GitHub
- Download the Latest Release from the Releases section of the GitHub Repository
- Extract the plugin folder from the zip to your vault's plugins folder: `/.obsidian/plugins/`
- Reload Obsidian
- If you are still having trouble installing this plugin, feel free to open an issue [here](https://github.com/Frostplexx/obisdian-mac-touchbar/issues)
- Note: This plugin requires Obsidian v0.9.8 or above to work properly.## Usage
1. Open the settings for the plugin
2. Add a new Touch Bar item
3. Add a name (can be any ascii character), a color and a macro
4. Close the settings page and enjoy your new Touch Bar item### Macro Language
For adding macros please use this syntax:
| Syntax | Description |
|------------|------------------------------------------------------------------------------------------------|
| [KEYCODE] | This is how you press a key, where `KEYCODE` is the name of the key you want pressed |
| + | + is used to combine multiple keys |
| ,DELAY, | , is used to add a delay between key presses where `DELAY` is the amount in ms |
| "TEXT" | " is used to add text where `TEXT` is the text you want to add. The plugin will type this text |
| # | # is used to add a comment where `COMMENT` is the comment you want to add (NOT IMPLEMENTED) |
| \ | \ is used to escape the next character |
| {REPEAT}() | {}() is used to repeat the previous command where `REPEAT` is the amount of times to repeat |