mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-30 11:54:57 +00:00
a791787a38
This seems to match Terminal. Fixes #145.
9 lines
164 B
Bash
Executable file
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 &
|