We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f867397 commit 7b46227Copy full SHA for 7b46227
src/engine.jl
@@ -5,8 +5,8 @@
5
# Session open & close
6
#
7
###########################################################
8
-const default_startflag = "" # no additional flags
9
-const default_matlabcmd = matlab_cmd * " -nosplash"
+const default_startflag = "-nodisplay -nosplash -nodesktop" # no additional flags
+const default_matlabcmd = matlab_cmd * " -nodisplay -nosplash -nodesktop"
10
# pass matlab flags directly or as a Vector of flags, i.e. "-a" or ["-a", "-b", "-c"]
11
startcmd(flag::AbstractString = default_startflag) = isempty(flag) ? default_matlabcmd : default_matlabcmd * " " * flag
12
startcmd(flags::AbstractVector{<:AbstractString}) = isempty(flags) ? default_matlabcmd : default_matlabcmd * " " * join(flags, " ")
0 commit comments