Created
May 29, 2022 20:43
-
-
Save pgrepds/416d3ef72cebc252742c6ca366eb5cef to your computer and use it in GitHub Desktop.
Create Matlab desktop entry on GNOME
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Execute the following command. | |
```bash | |
sudo nvim /usr/share/applications/matlab.desktop | |
``` | |
Add the following content. | |
```bash | |
[Desktop Entry] | |
Type=Application | |
Terminal=false | |
MimeType=text/x-matlab | |
Exec=/usr/local/MATLAB/R2022a/bin/matlab -desktop | |
Name=MATLAB | |
Icon=matlab | |
Categories=Development;Math;Science | |
Comment=Scientific computing environment | |
StartupNotify=true | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment