device-60.home 2025-10-5:17:37:34

This commit is contained in:
oskar
2025-10-05 17:37:34 +02:00
parent db72e1e396
commit c4024f912e
6 changed files with 2057 additions and 2 deletions

View File

@@ -36,8 +36,8 @@
"obsidian-spaced-repetition",
"github-sync",
"obsidian-completr",
"default-template",
"maximise-active-pane-obsidian",
"pane-relief",
"obsidian-minimal-settings"
"obsidian-minimal-settings",
"auto-template-trigger"
]

View File

@@ -0,0 +1,10 @@
{
"folderSpecificTemplates": [
{
"folderPath": "/",
"templateName": "default new note"
}
],
"disablePrompt": false,
"debug": false
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,9 @@
{
"id": "auto-template-trigger",
"name": "Auto Template Trigger",
"version": "1.3.2",
"minAppVersion": "1.2.1",
"description": "Automatically apply or prompt for a template when creating a note. Supports assigning templates to folders.",
"author": "Numeroflip",
"isDesktopOnly": false
}

View File

@@ -0,0 +1,9 @@
:root {
--auto-template-prompt-modal-opacity: 100;
}
.modal-container {
opacity: var(--auto-template-prompt-modal-opacity);
transition: opacity 0.2s ease-in-out;
}