plan9port/mac/9term.app/Contents/MacOS/9term
Russ Cox a791787a38 mac/9term.app: invoke 9term with -l
This seems to match Terminal.

Fixes #145.
2018-11-14 00:13:01 -05:00

9 lines
164 B
Bash
Executable file

#!/bin/bash
cd $HOME
. ~/.bashrc
PLAN9=${PLAN9:-/usr/local/plan9}
if ! [[ :$PATH: =~ :$PLAN9/bin: ]]
then
PATH=$PATH:$PLAN9/bin
fi
$PLAN9/bin/9term -l -W600x800 &