I have things working with gnome-panel with only a minor issue (startup items that have system tray icons take a long time to start).<br><br>Are you missing setting a gap? Relevant xmonad.hs parts:<br><br>import XMonad.Hooks.ManageDocks
<br><br>--For one gnome-panel across top, for usual gnome setup<br>--use: myDefaultGaps = [(24, 24, 0, 0)]<br>myDefaultGaps&nbsp;&nbsp; = [(24,0,0,0)]<br><br>myLayout = avoidStruts(tiled ||| Mirror tiled ||| Full)<br>&nbsp; where<br>&nbsp;&nbsp;&nbsp;&nbsp; -- default tiling algorithm partitions the screen into two panes
<br>&nbsp;&nbsp;&nbsp;&nbsp; tiled&nbsp;&nbsp; = Tall nmaster delta ratio<br>&nbsp;&nbsp;&nbsp;&nbsp; -- The default number of windows in the master pane<br>&nbsp;&nbsp;&nbsp;&nbsp; nmaster = 1&nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp; -- Default proportion of screen occupied by master pane<br>&nbsp;&nbsp;&nbsp;&nbsp; ratio&nbsp;&nbsp; = 1/2<br>&nbsp;&nbsp;&nbsp;&nbsp; -- Percent of screen to increment by when resizing panes
<br>&nbsp;&nbsp;&nbsp;&nbsp; delta&nbsp;&nbsp; = 3/100<br><br>Also, how are you getting xmonad to launch in place of metacity? I have this in my ~/.gnomerc:<br><br>&nbsp;export WINDOW_MANAGER=/usr/bin/xmonad<br><br><br><div class="gmail_quote">On Dec 31, 2007 8:50 AM, Jevin Maltais &lt;
<a href="mailto:jevin@techie.com">jevin@techie.com</a>&gt; wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Now we&#39;re closer: the config compiles and now we&#39;re in gnome with
<br>xmonad as the WM. &nbsp;I know this because I can roll the mouse over a<br>window and it will receive the focus (not normal metacity behavior).<br>Also, the windows have no titlebar.<br><br>The issue is when I start say, firefox, it gets put in the top left
<br>corner _over top_ of the gnome-panel. &nbsp;Also, firefox didn&#39;t launch<br>into fullscreen which is normal xmonad behavior if I run it alone.<br>alt-j and alt-k don&#39;t work so it looks like I&#39;m halfway there? &nbsp;I
<br>looked at the keyboard shortcuts in gnome and there doesn&#39;t seem to be<br>conflicts.<br><br>I&#39;m debating throwing out gnome and just using dzen but I&#39;d rather use gnome.<br><br>Sorry about being a nag,<br>
Jevin<br><br>On Dec 31, 2007 5:07 AM, Andrea Rossato &lt;<a href="mailto:mailing_list@istitutocolli.org">mailing_list@istitutocolli.org</a>&gt; wrote:<br>&gt; On Mon, Dec 31, 2007 at 11:04:33AM +0100, Andrea Rossato wrote:
<br>&gt; &gt; import XMonad<br>&gt; &gt; import XMonad.Hooks.ManageDocks<br>&gt; &gt;<br>&gt; &gt; port XMonad.Hooks.ManageDocks<br>&gt; &gt;<br>&gt; &gt; main = xmonad $ defaultConfig<br>&gt; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; { borderWidth &nbsp; &nbsp; &nbsp;= 3
<br>&gt; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; , manageHook &nbsp; &nbsp; &nbsp; = manageDocks<br>&gt; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; , layoutHook &nbsp; &nbsp; &nbsp; = avoidStruts (tall ||| Mirror tall)<br>&gt; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br>&gt; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; where tall = Tall 1 (3/100) (1/2)
<br>&gt; &gt;<br>&gt; &gt; hope this helps.<br>&gt;<br>&gt;<br>&gt;<br>&gt; sorry for my cut and paste... I meant:<br>&gt;<br>&gt;<br>&gt; import XMonad<br>&gt; import XMonad.Hooks.ManageDocks<br>&gt;<br>&gt; main = xmonad $ defaultConfig
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; { borderWidth &nbsp; &nbsp; &nbsp;= 3<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; , manageHook &nbsp; &nbsp; &nbsp; = manageDocks<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; , layoutHook &nbsp; &nbsp; &nbsp; = avoidStruts (tall ||| Mirror tall)<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; where tall = Tall 1 (3/100) (1/2)<br>&gt;<br>&gt;<br>&gt;<br>&gt; _______________________________________________<br>&gt; xmonad mailing list<br>&gt; <a href="mailto:xmonad@haskell.org">xmonad@haskell.org
</a><br>&gt; <a href="http://www.haskell.org/mailman/listinfo/xmonad" target="_blank">http://www.haskell.org/mailman/listinfo/xmonad</a><br>&gt;<br>&gt;<br><font color="#888888"><br><br><br>--<br>Jevin Maltais [<a href="mailto:jevin@techie.com">
jevin@techie.com</a>]<br><a href="http://jevy.org" target="_blank">http://jevy.org</a><br>_______________________________________________<br>xmonad mailing list<br><a href="mailto:xmonad@haskell.org">xmonad@haskell.org</a>
<br><a href="http://www.haskell.org/mailman/listinfo/xmonad" target="_blank">http://www.haskell.org/mailman/listinfo/xmonad</a><br></font></blockquote></div><br>