Update to newest refactor of makeDesktopItem

This commit is contained in:
Lars Mühmel 2022-03-03 15:31:23 +00:00 committed by Doron Behar
parent 4d37b026cc
commit 91f5dc1217

View file

@ -37,11 +37,23 @@
exec = "@out@/bin/matlab -desktop %F"; exec = "@out@/bin/matlab -desktop %F";
icon = "matlab"; icon = "matlab";
# Most of the following are copied from octave's desktop launcher # Most of the following are copied from octave's desktop launcher
categories = "Utility;TextEditor;Development;IDE;"; categories = [
mimeType = "text/x-octave;text/x-matlab;"; "Utility"
extraEntries = '' "TextEditor"
Keywords=science;math;matrix;numerical computation;plotting; "Development"
''; "IDE"
];
mimeTypes = [
"text/x-octave"
"text/x-matlab"
];
keywords = [
"science"
"math"
"matrix"
"numerical computation"
"plotting"
];
}; };
in { in {