10 lines
282 B
JavaScript
Raw Normal View History

2025-03-30 22:08:52 +03:00
// will add a launcher to the left sidebar
api.createOrUpdateLauncher({
id: 'taskmanager',
type: 'script',
title: 'New task',
icon: 'bx-task',
keyboardShortcut: 'alt+n',
scriptNoteId: api.currentNote.getRelationValue('createNewTask'),
isVisible: true
});