How do I create a desktop shortcut to start MATLAB with command-line options in MacOS?

18 views (last 30 days)
I need to run MATLAB with the command-line option "-cefdisablegpu" on my MacBook. For example, for MATLAB R2022b I run the following commands from Terminal:
cd /Applications/MATLAB_R2022b.app/bin/
./matlab -cefdisablegpu
Is there a way to create a desktop shortcut so that MATLAB starts with this flag automatically when I double-click?

Accepted Answer

MathWorks Support Team
MathWorks Support Team on 6 Feb 2023
Edited: MathWorks Support Team on 6 Feb 2023
To create a desktop shortcut such that MATLAB R20XXx runs with a startup option like "-cefdisablegpu", please follow the steps below. 
  • Open Terminal in your MacBook. 
  • Type the following commands in Terminal:
cd ~/Desktop
touch matlab_new.command
  • Right click the new icon created on the desktop --> Open With --> TextEdit
#!/bin/bash
% chmod u+x /Users/$USER/Desktop/matlab_new.command
cd /Applications/MATLAB_R20XXx.app/bin/
./matlab -cefdisablegpu
chmod u+x /Users/$USER/Desktop/matlab_new.command
  • At this point, you should be able to double-click the created icon on the desktop to start MATLAB with the specified flag. 
  • (Optional) To add a custom icon image, follow the steps in the following Apple discussions thread: https://discussions.apple.com/thread/7720713
  1 Comment
Walter Roberson
Walter Roberson on 26 Jan 2023
Instead of
chmod u+x /Users/username/Desktop/matlab_new.command
with the necessity to replace "username" with your own username, you could instead do
chmod u+x ~/Desktop/matlab_new.command
The ~ in context means "the home directory of the executing account".
The instructions already used ~ in the cd ~/Desktop step so there is no reason to avoid using it.

Sign in to comment.

More Answers (0)

Categories

Find more on Desktop in Help Center and File Exchange

Tags

No tags entered yet.

Products


Release

R2022b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!