mirror of
				https://github.com/zadam/trilium.git
				synced 2025-11-03 20:06:08 +01:00 
			
		
		
		
	
		
			
	
	
		
			10 lines
		
	
	
		
			282 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
		
		
			
		
	
	
			10 lines
		
	
	
		
			282 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 
								 | 
							
								// 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
							 | 
						||
| 
								 | 
							
								});
							 |