mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-30 19:19:03 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			518 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			518 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| [Desktop Entry]
 | |
| <%=
 | |
| Object.entries({
 | |
|     "Name": productName,
 | |
|     "Comment": description,
 | |
|     "GenericName": genericName,
 | |
|     "Exec": name ? `${name} %U` : undefined,
 | |
|     "Icon": name,
 | |
|     "Type": "Application",
 | |
|     "StartupNotify": "true",
 | |
|     "StartupWMClass": productName,
 | |
|     "Categories": categories?.length ? `${categories.join(";")};` : undefined,
 | |
|     "MimeType": mimeType?.length ? `${mimeType.join(";")};` : undefined
 | |
| })
 | |
| .map(line => line[1] ? line.join("=") : undefined)
 | |
| .filter(line => !!line)
 | |
| .join("\n")%> | 
