sorry for being a n00b with Haskell, but every time I open Chromium on my XMonad Arch Linux machine I get this weird side window with chromium's underlying data.
Look at the image here if it helps:
I want, when opening chromium, to not show this strange side window. I do not care if chromium is floating or full screen or anything, I just want this weird window gone!
Sorry for being new to xmonad!!
Here is a snippet from my xmonad.hs
file:
import XMonad.Hooks.ManageHelpers (composeOne, isFullscreen, isDialog, doFullFloat, doCenterFloat)
myManageHook = composeAll. concat $
[ [ className =? c --> doCenterFloat| c <- floats]
, [ resource =? r --> doIgnore | r <- ignore]
, [ resource =? "gecko" --> doF (W.shift "net") ]
, [ isFullscreen --> doFullFloat]
, [ isDialog --> doCenterFloat]]
where floats = ["chromium", "Vlc"]
ignore = []