<div dir="ltr"><div>The &quot;maximize&quot; operation in general depends on the window manager (i.e., it is up to the wm to interpret it the way it wants).<br>If you want your window to take the whole screen, maybe you can get the screen height and width and set the window attributes to these values?<br>

</div><div><br>Laurent<br></div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Wed, Jan 9, 2013 at 8:05 AM, Nikolaus Klepp <span dir="ltr">&lt;<a href="mailto:dr.klepp@gmx.at" target="_blank">dr.klepp@gmx.at</a>&gt;</span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi all!<br>
<br>
I want to make a follscreen window on Xorg without windowmanager. This code<br>
works, when a windowmanager is running, but it fails without, i.e. the window<br>
is 300x300.<br>
<br>
#lang racket/gui<br>
(define frame<br>
  (new frame%<br>
     [label &quot;test&quot;]<br>
     [width  300]<br>
     [height 300]<br>
     [style<br>
(list&#39;no-resize-border &#39;no-caption &#39;no-system-menu &#39;hide-menu-bar)]))<br>
(send frame show #t)<br>
<br>
Even when I add a (send frame maximize #t), it does not work.<br>
<br>
Any idea how to get this working?<br>
<br>
Nik<br>
____________________<br>
  Racket Users list:<br>
  <a href="http://lists.racket-lang.org/users" target="_blank">http://lists.racket-lang.org/users</a><br>
</blockquote></div><br></div>