From mboxrd@z Thu Jan 1 00:00:00 1970 Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Apple Message framework v1283) From: Chris Wilson In-Reply-To: Date: Tue, 13 Nov 2012 10:57:51 -0600 Content-Transfer-Encoding: quoted-printable Message-Id: <13BCF672-BC1A-486C-B3D9-CC91D34172FC@gmail.com> References: To: Fans of the OS Plan 9 from Bell Labs <9fans@9fans.net> Subject: Re: [9fans] Start acme maximized Topicbox-Message-UUID: d613426c-ead7-11e9-9d60-3106f5b1d025 On Nov 13, 2012, at 10:46 AM, Costin Chirvasuta wrote: > Hello, >=20 > Is there any way to make acme from p9p start maximized in Linux? >=20 > I have a devilspie script that maximizes acme whenever it starts but = acme gets to start in a smaller window before this and the layout saved = in the dump file gets messed up after the maximize. Not really "maximized", but at any size you want. I have a little script = that starts Acme with parameters that I like: #!/bin/bash font=3D/Users/chris/Downloads/plan9/font/anon/anon.14.font size=3D660x660 exec acme -a -c 1 -f $font -W $size "$@" That is, start acme with autoindent (-a), one column (-c 1), the font = that I list, and a size of 660x660, which you can set to be whatever you = want. -- chris=