Hi Joachim,<br><br>My xmonad.hs is below. I have two panels: xmobar and trayer. trayer is started via a script that is called by gdm, using the line:<br><br>trayer --edge top --align right --SetDockType true --SetPartialStrut true --expand true --width 10 --transparent true --alpha 0 --tint 0x000000 --height 17 &<br>

<br>It turns out that killing trayer fixes the problem, and the space is about as wide as trayer is tall, so maybe it's actually a bug with trayer?<br><br>Also, sorry about the "important": this is my first-ever Debian bug report, and rather than spending an hour agonising over which option to choose, I just picked one and figured that if it was a bad choice someone would tell me ... so now I know better :)<br>

<br>Thanks,<br>Ben<br><br>xmonad.hs:<br><br><blockquote style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex" class="gmail_quote"><span style="font-family:courier new,monospace">import XMonad</span><br style="font-family:courier new,monospace">

<span style="font-family:courier new,monospace">import XMonad.Layout</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">import XMonad.Hooks.DynamicLog</span><br style="font-family:courier new,monospace">

<span style="font-family:courier new,monospace">import XMonad.Hooks.ManageDocks</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">import XMonad.Util.Run(spawnPipe)</span><br style="font-family:courier new,monospace">

<span style="font-family:courier new,monospace">import XMonad.Util.EZConfig</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">import System.IO</span><br style="font-family:courier new,monospace">

<span style="font-family:courier new,monospace">import XMonad.Hooks.ManageHelpers</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">import XMonad.Layout.Grid</span><br style="font-family:courier new,monospace">

<span style="font-family:courier new,monospace">import XMonad.Layout.Magnifier</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">import XMonad.Layout.Tabbed</span><br style="font-family:courier new,monospace">

<span style="font-family:courier new,monospace">import Data.Ratio</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">import XMonad.Layout.OneBig</span><br style="font-family:courier new,monospace">

<br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">main = do</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">    xmproc <- spawnPipe "xmobar"</span><br style="font-family:courier new,monospace">

<span style="font-family:courier new,monospace">    xmonad $ defaultConfig</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">        { manageHook = manageDocks <+> myManageHook <+> manageHook defaultConfig</span><br style="font-family:courier new,monospace">

<span style="font-family:courier new,monospace">        , layoutHook = myLayoutHook</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">        , logHook = dynamicLogWithPP xmobarPP</span><br style="font-family:courier new,monospace">

<span style="font-family:courier new,monospace">                        { ppOutput = hPutStrLn xmproc</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">                        , ppTitle = xmobarColor "green" "" . shorten 50</span><br style="font-family:courier new,monospace">

<span style="font-family:courier new,monospace">                        }</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">        , modMask = mod4Mask     -- Rebind Mod to the Windows key</span><br style="font-family:courier new,monospace">

<span style="font-family:courier new,monospace">        , borderWidth        = 1</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">        , normalBorderColor  = "#000000"</span><br style="font-family:courier new,monospace">

<span style="font-family:courier new,monospace">        , focusedBorderColor = "#c0c0c0" -- cd8b00</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">        }</span><br style="font-family:courier new,monospace">

<span style="font-family:courier new,monospace">        `additionalKeysP`</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">         [ ("M-f", spawn "thunar")</span><br style="font-family:courier new,monospace">

<span style="font-family:courier new,monospace">         , ("M-w", spawn "x-www-browser")</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">         , ("M-z", spawn "xscreensaver-command -lock")</span><br style="font-family:courier new,monospace">

<span style="font-family:courier new,monospace">         , ("M-S-<Return>", spawn "terminator")</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">         , ("<XF86AudioLowerVolume>", spawn "amixer -c 0 set Master 2dB-")</span><br style="font-family:courier new,monospace">

<span style="font-family:courier new,monospace">         , ("<XF86AudioRaiseVolume>", spawn "amixer -c 0 set Master 2dB+")</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">         , ("<XF86AudioMute>", spawn "amixer -c 0 set Master 0")</span><br style="font-family:courier new,monospace">

<span style="font-family:courier new,monospace">         ]</span><br style="font-family:courier new,monospace"><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">myLayoutHook = avoidStruts (OneBig (3/4) (3/4) ||| tiled ||| Grid ||| magnify Grid ||| simpleTabbed ||| Full)</span><br style="font-family:courier new,monospace">

<span style="font-family:courier new,monospace">    where</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">      tiled = Tall nmaster delta ratio</span><br style="font-family:courier new,monospace">

<span style="font-family:courier new,monospace">      nmaster = 1</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">      delta = 3/100</span><br style="font-family:courier new,monospace">

<span style="font-family:courier new,monospace">      ratio = 1/2</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">      magnify = magnifiercz (12%10)</span><br style="font-family:courier new,monospace">

<br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">myManageHook = composeAll</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">    [ className =? "Gimp"      --> doFloat</span><br style="font-family:courier new,monospace">

<span style="font-family:courier new,monospace">    , className =? "Vncviewer" --> doFloat</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">    , isFullscreen --> doFullFloat</span><br style="font-family:courier new,monospace">

<span style="font-family:courier new,monospace">    ]</span><br></blockquote><br><div class="gmail_quote">On Fri, Feb 17, 2012 at 08:22, Joachim Breitner <span dir="ltr"><<a href="mailto:nomeata@debian.org">nomeata@debian.org</a>></span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi Ben,<br>
<br>
could you please post your xmonad configuration? This sounds as if you<br>
run some program that set STRUTS information, such as a panel. Might<br>
that be the case?<br>
<br>
Also, I don’t think this bug has severity important, but let’s just fix<br>
this instead of arguing about that :-)<br>
<br>
Greetings,<br>
Joachim<br>
<br>
Am Donnerstag, den 16.02.2012, 20:15 -0800 schrieb Ben VB:<br>
<div><div class="h5">> Package: xmonad<br>
> Version: 0.10-3<br>
> Severity: important<br>
><br>
> Dear Maintainer,<br>
>       On upgrading from squeeze to sid (via replacing occurences of<br>
>       'squeeze' in sources.list with 'sid'), xmonad fails to draw<br>
>       windows over the entire screen, instead leaving a ~50px empty<br>
>       bar on the right side of the screen in which nothing is<br>
>       displayed. Changing to different layouts does not fix this<br>
>       problem. Resizing windows (mod+button2) does enable me to fill<br>
>       the entire screen, but this floats the window and defeats the<br>
>       purpose of using a tiling wm. Recompiling my config file didn't<br>
>       change anything.<br>
><br>
> Thanks,<br>
> Ben<br>
><br>
> -- System Information:<br>
> Debian Release: wheezy/sid<br>
>   APT prefers unstable<br>
>   APT policy: (990, 'unstable')<br>
> Architecture: amd64 (x86_64)<br>
><br>
> Kernel: Linux 3.2.0-1-amd64 (SMP w/4 CPU cores)<br>
> Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)<br>
> Shell: /bin/sh linked to /bin/dash<br>
><br>
> Versions of packages xmonad depends on:<br>
> ii  libc6         2.13-26<br>
> ii  libffi5       3.0.10-3<br>
> ii  libgmp10      2:5.0.4+dfsg-1<br>
> ii  libx11-6      2:1.4.4-4<br>
> ii  libxext6      2:1.3.0-3<br>
> ii  libxinerama1  2:1.1.1-3<br>
> ii  x11-utils     7.6+4<br>
><br>
> Versions of packages xmonad recommends:<br>
> ii  libghc-xmonad-dev  0.10-3<br>
> ii  libghc-xmonad-doc  0.10-3<br>
> ii  xfonts-base        1:1.0.3<br>
><br>
> Versions of packages xmonad suggests:<br>
> ii  suckless-tools [dmenu]  38-1<br>
><br>
> -- no debconf information<br>
><br>
><br>
><br>
</div></div>> _______________________________________________<br>
> Pkg-haskell-maintainers mailing list<br>
> <a href="mailto:Pkg-haskell-maintainers@lists.alioth.debian.org">Pkg-haskell-maintainers@lists.alioth.debian.org</a><br>
> <a href="http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-haskell-maintainers" target="_blank">http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-haskell-maintainers</a><br>
><br>
<span class="HOEnZb"><font color="#888888"><br>
--<br>
Joachim "nomeata" Breitner<br>
Debian Developer<br>
  <a href="mailto:nomeata@debian.org">nomeata@debian.org</a> | ICQ# 74513189 | GPG-Keyid: 4743206C<br>
  JID: <a href="mailto:nomeata@joachim-breitner.de">nomeata@joachim-breitner.de</a> | <a href="http://people.debian.org/%7Enomeata" target="_blank">http://people.debian.org/~nomeata</a><br>
</font></span></blockquote></div><br>