remove my config file -- the wiki is where its at.

This commit is contained in:
Don Stewart
2008-04-19 19:56:50 +00:00
parent bcc4295d3d
commit 336c617cbe
2 changed files with 0 additions and 29 deletions

View File

@@ -1,28 +0,0 @@
--------------------------------------------------------------------
-- |
-- Module : XMonad.Config.Dons
-- Copyright : (c) Galois, Inc. 2007
-- License : BSD3
--
-- Maintainer: Don Stewart <dons@galois.com>
--
-- An example, simple configuration file.
--
--------------------------------------------------------------------
module XMonad.Config.Dons where
import XMonad
import XMonad.Hooks.DynamicLog
import XMonad.Layout.NoBorders
donsMain :: IO ()
donsMain = dzen $ \x -> xmonad $ x
{ terminal = "term"
, normalBorderColor = "#333333"
, focusedBorderColor = "red"
, layoutHook = smartBorders (layoutHook x)
, manageHook =
manageHook x <+>
(className =? "Toplevel" --> doFloat)
}

View File

@@ -98,7 +98,6 @@ library
XMonad.Actions.WindowGo
XMonad.Actions.WindowBringer
XMonad.Config.Sjanssen
XMonad.Config.Dons
XMonad.Config.Arossato
XMonad.Config.Droundy
XMonad.Hooks.DynamicLog