From 06cf4b62ec4113933fd02b8d178978bb44ef53e0 Mon Sep 17 00:00:00 2001 From: Lucio Andrés Illanes Albornoz Date: Sep 29 2017 16:24:03 +0000 Subject: etc/midipix.sh: stty(1) -echo ctty, call ntctty.exe w/ -p -e, and invoke bash as login shell w/ -l (via _mik.) --- diff --git a/etc/midipix.sh b/etc/midipix.sh index 9cd5684..be4e383 100755 --- a/etc/midipix.sh +++ b/etc/midipix.sh @@ -37,10 +37,11 @@ if [ "$(uname -o)" = "Msys" ]; then fi; mintty -h always -s 120,80 -e /bin/sh -c " set -o errexit; + stty raw -echo; env PATH=${MIDIPIX_PATH}/lib \ - bin/ntctty.exe -e \ + bin/ntctty.exe -p -e \ bin/chroot . \ - /bin/env PATH=/bin:/lib bash" & + /bin/env PATH=/bin:/lib bash -l" & sleep ${SLEEP_DELAY:=0.25}; printf "%-35s: %s\n" "ntctty PID" "$(ps -W | awk '$NF ~ /ntctty\.exe$/{print $1}')";