In combination with a shortcut, this creates a Drafts-like “just start writing” button for your Obsidian Daily Notes.
This workflow requires the following plugins:
Set up
- Install, enable, and set up the above plugins
- Set up the following template for Templater:
<%*
if (this.app.workspace.activeLeaf.view.currentMode.type != "source"){this.app.commands.executeCommandById("markdown:toggle-preview");}
let editor = this.app.workspace.activeLeaf.view.editor;
let timestamp = tp.date.now("HH:mm");
let linePrefix = "\n- [ ] " + timestamp + " ";
editor.focus();
if (this.app.isMobile) {
editor.setCursor(editor.lastLine());
editor.replaceSelection(linePrefix)
editor.setCursor(editor.lastLine());;
} else {
const initialLines = editor.lineCount();
editor.setCursor({ line: initialLines, ch: 0 });
editor.replaceSelection(linePrefix);
const finalLines = editor.lineCount();
editor.setCursor({ ch: 0, line: finalLines });
}
%>
- Set up the template above as a command via Hotkeys for Templates
- Install and customize the shortcut on your iPhone/iPad
- Add the shortcut to your homescreen (click the … button when editing the shortcut and select “Add to home screen”)
That’s it!