summaryrefslogtreecommitdiffstats
path: root/mac/9term.app/Contents/MacOS
diff options
context:
space:
mode:
Diffstat (limited to 'mac/9term.app/Contents/MacOS')
-rwxr-xr-xmac/9term.app/Contents/MacOS/9term8
1 files changed, 6 insertions, 2 deletions
diff --git a/mac/9term.app/Contents/MacOS/9term b/mac/9term.app/Contents/MacOS/9term
index b5a46bc8..04eb042c 100755
--- a/mac/9term.app/Contents/MacOS/9term
+++ b/mac/9term.app/Contents/MacOS/9term
@@ -3,12 +3,16 @@ fshell=$(finger $(whoami) | sed -n 's/.*Shell: //p' | sed 1q)
SHELL=${fshell:-$SHELL}
PLAN9=${PLAN9:-/usr/local/plan9}
cd $HOME
+arch=x86_64
+if arch -arch arm64 date >/dev/null 2>&1; then
+ arch=arm64
+fi
case "$SHELL" in
*/rc)
echo '
if(! ~ $PLAN9/bin $path)
path=($path $PLAN9/bin)
- $PLAN9/bin/9term -l -W600x800 &
+ arch -arch '$arch' $PLAN9/bin/9term -l -W600x800 &
' | $SHELL -l
exit 0
;;
@@ -24,6 +28,6 @@ if ! [[ :$PATH: =~ :$PLAN9/bin: ]]
then
PATH=$PATH:$PLAN9/bin
fi
-$PLAN9/bin/9term -l -W600x800 &
+arch -arch $arch $PLAN9/bin/9term -l -W600x800 &
exit 0