Browse Source

Update command_start.sh

Correct the width and height argument order for the tmux session.
pull/1751/head
Nathan 7 years ago
committed by GitHub
parent
commit
65d9229ee9
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      lgsm/functions/command_start.sh

2
lgsm/functions/command_start.sh

@ -98,7 +98,7 @@ fn_start_tmux(){
# Create lockfile
date > "${rootdir}/${lockselfname}"
cd "${executabledir}"
tmux new-session -d -x "${sessionheight}" -y "${sessionwidth}" -s "${servicename}" "${executable} ${parms}" 2> "${lgsmlogdir}/.${servicename}-tmux-error.tmp"
tmux new-session -d -x "${sessionwidth}" -y "${sessionheight}" -s "${servicename}" "${executable} ${parms}" 2> "${lgsmlogdir}/.${servicename}-tmux-error.tmp"
# Create logfile
touch "${consolelog}"

Loading…
Cancel
Save