From mboxrd@z Thu Jan 1 00:00:00 1970 To: 9fans@cse.psu.edu Subject: Re: [9fans] Opening p9p acme to a particular geometry From: "Russ Cox" Date: Tue, 8 May 2007 12:31:12 -0400 In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Message-Id: <20070508163056.E4B111E8C3A@holo.morphisms.net> Topicbox-Message-UUID: 5fa9f53a-ead2-11e9-9d60-3106f5b1d025 > Almost. I was insufficiently specific - I also need to control > placement of the window, in order to have it use up nearly my whole > screen. -W doesn't seem to handle the extended X11 -geoemtry string: - > geometry 1865x1150+0-0 It does, just not like that. Intro(1): Many of the graphical programs from Plan 9 are present, including sam(1) and acme(1). An X11 window manager rio(1) mimics Plan 9's window system, with command windows imple- mented by the external program 9term(1). Following the style of X Windows, these programs run in new windows rather than the one in which they are invoked. They all take a -W option to specify the size and placement of the new window. The argument is one of widthxheight, widthxheight@xmin,xmax, or xmin,ymin,xmax,ymax. So -W 1865x1150@10,10 or -W 10,10,1875,1160 Russ