summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2013-09-10 21:48:55 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2013-09-10 21:48:55 +0200
commit6286b30a91b0938a598f25ff461c5982db366ac3 (patch)
treedd916c2de7cc5857d08a0723bb0f1b7c4f540cdc
parent41ee35e3d198f0d87081b476ff0286dd2f1fed0b (diff)
downloadmetatile-6286b30a91b0938a598f25ff461c5982db366ac3.tar
metatile-6286b30a91b0938a598f25ff461c5982db366ac3.zip
Set border width to 0 for new windows
-rw-r--r--XMonad/Operations.hs1
1 files changed, 1 insertions, 0 deletions
diff --git a/XMonad/Operations.hs b/XMonad/Operations.hs
index 79feba1..6bb2dae 100644
--- a/XMonad/Operations.hs
+++ b/XMonad/Operations.hs
@@ -181,6 +181,7 @@ setInitialProperties :: Window -> X ()
setInitialProperties w = withDisplay $ \d -> do
setWMState w iconicState
asks (clientMask . config) >>= io . selectInput d w
+ io $ setWindowBorderWidth d w 0
-- | refresh. Render the currently visible workspaces, as determined by
-- the 'StackSet'. Also, set focus to the focused window.