| .github/workflows | ||
| src | ||
| .editorconfig | ||
| .eslintignore | ||
| .eslintrc | ||
| .gitignore | ||
| .npmrc | ||
| esbuild.config.mjs | ||
| LICENSE.md | ||
| manifest.json | ||
| package-lock.json | ||
| package.json | ||
| README.md | ||
| styles.css | ||
| tsconfig.json | ||
| version-bump.mjs | ||
| versions.json | ||
Obsidian Inactivty Commands Plugin
Obsidian Inactivty Commands is a plugin for Obsidian.md that allows users to schedule Obsidian commands or custom user scripts to run automatically after a period of inactivity.
Installation
To install Obsidian Inactivty Commands you can download it through the community packages within Obsidian, or download the latest release and add it manually.
Usage
Add jobs in the plugin settings page.
Each job requires
- a name
- an Obsidian command to run
- a inactivity-period
- This will be the frequency your job runs, after the user (you) stops doing anything in side obsidian.
Each job also has three toggable options
- Enable job to run on mobile
- By default all jobs do not run on mobile
- Toggle job lock
- If your job gets stuck with a bad log you can toggle the status here. Check locking for more details
- Toggle sync check
- Toggles the sync check ability on a per job basis. Check sync for more details
Functionality
API / UserScripts
An API is exposed to add user functions via Javascript. The name is treated as a UUID for the job ensure that this is consistent across reloads of Obsidian to ensure that locks / last run data is usable.
An instance of the Obsidian app is passed to all user function as the first and only paramater.
To clear locks for jobs added via the API you can add a job with the corrosponding name and then pass the name to the clearJobLock(name: string) function also in the API.
Example of a user function
const iac = app.plugins.plugins.inactivity_commands.api;
iac.addJob('addJob', {hours:3, mins:30, seconds:59}, {"enableMobile": true}, function(app){console.log('Job has ran!')});
## Sync
Obsidian Inactivty Commands has the ability to hook into the native Obsidian Sync plugin. When enabled all locks, task runs & commands will wait for Obsidian Sync to be fully completed before running any jobs.
This is useful if you have multiple instances of Obsidian running and want to ensure that jobs only run on one device or once per Obsidian vault.
## Locking
At the start of each job a lock is saved into the plugin settings that stops multiple instances of the same jobs running. Sometimes if jobs don't finish cleanly they can be left with locks still in place. They can be unlocked in the settings page of the plugin.
# License
Obsidian Inactivty Commands is released under the MIT License. See the LICENSE file for more information.