Verified Commit 2c370e34 authored by Peterson, Peter's avatar Peterson, Peter
Browse files

Copy start_gui command from the toml files

parent 9f63d7a9
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -31,9 +31,9 @@ fi

# put together arguments - conda_env, application, argv
if [ -n "${mode_arg}" ]; then
  args=("${PIXI_ENVIRON}" "start_gui" "${mode_arg}" "${@}")
  args=("${PIXI_ENVIRON}" "addie" "${mode_arg}" "${@}")
else
  args=("${PIXI_ENVIRON}" "start_gui" "${@}")
  args=("${PIXI_ENVIRON}" "addie" "${@}")
fi
# launch the tool
pixi_launch "${args[@]}"
+1 −1
Original line number Diff line number Diff line
@@ -19,6 +19,6 @@ fi
  || . /bin/nsd-app-wrap.sh

# put together arguments - conda_env, application, argv
args=("${PIXI_ENVIRON}" "start_gui" "$@")
args=("${PIXI_ENVIRON}" "hyspecppt" "$@")
# launch the tool
pixi_launch "${args[@]}"
+1 −2
Original line number Diff line number Diff line
@@ -10,7 +10,6 @@ PIXI_ENVIRON=ibeatles
  || . /bin/nsd-app-wrap.sh

# put together arguments - conda_env, application, argv
args=("${PIXI_ENVIRON}" "start_gui" "$@")
args=("${PIXI_ENVIRON}" "start" "$@")
# launch the tool
pixi_launch "${args[@]}"
+1 −1
Original line number Diff line number Diff line
@@ -19,6 +19,6 @@ fi
  . /bin/nsd-app-wrap.sh

# put together arguments - conda_env, application, argv
args=("${PIXI_ENVIRON}" "start_gui" "$@")
args=("${PIXI_ENVIRON}" "inspired" "$@")
# launch the tool
pixi_launch "${args[@]}"
+1 −1
Original line number Diff line number Diff line
@@ -10,6 +10,6 @@ PIXI_ENVIRON=licorne
    . /bin/nsd-app-wrap.sh

# put together arguments - conda_env, application, argv
args=("${PIXI_ENVIRON}" "start_gui" "$@")
args=("${PIXI_ENVIRON}" "licorne" "$@")
# launch the tool
pixi_launch "${args[@]}"
Loading