From mboxrd@z Thu Jan 1 00:00:00 1970 Mime-Version: 1.0 (Apple Message framework v619) In-Reply-To: <9E93448E-2627-11D9-BCD5-000393A941BC@ar.aichi-u.ac.jp> References: <32a656c204102413236b127923@mail.gmail.com> <5B11AE18-2609-11D9-BCD5-000393A941BC@ar.aichi-u.ac.jp> <32a656c204102417385ad56885@mail.gmail.com> <9E93448E-2627-11D9-BCD5-000393A941BC@ar.aichi-u.ac.jp> Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Abhey Shah Subject: Re: [9fans] Drawterm crashing on a Mac. Date: Tue, 26 Oct 2004 10:39:53 +0100 To: Fans of the OS Plan 9 from Bell Labs <9fans@cse.psu.edu> Topicbox-Message-UUID: f6ada54e-eacd-11e9-9e20-41e7f4b1d025 I've found drawterm usable but with funny colours at times, but i prefer Vnc over drawterm or virtual PC on the Mac because it also lets you paste into your plan 9 session. Virtual PC has the additional drawback if you're using a laptop without an external mouse that you have to do silly things like in the script below so that you can get middle button functionality (pressing shift and right button is not an option). cat bin/rc/bswa #!/bin/rc if (! test -e /env/buttonmap) {buttonmap=0} if(~ $buttonmap 1 ) { echo buttonmap 132 >/dev/mousectl buttonmap=0 } if not { echo buttonmap 123 >/dev/mousectl buttonmap=1 } Abhey