summaryrefslogtreecommitdiff
path: root/xmonad.hs
diff options
context:
space:
mode:
authorAndrew Cady <d@jerkface.net>2017-01-20 01:33:28 -0500
committerAndrew Cady <d@jerkface.net>2017-01-20 01:35:50 -0500
commitf4e38f8e9b4b75cf6e7575268b21d8c8c17431dc (patch)
tree4ba6624ce4021fd71dfdf6ef6ac97ca8e5d85a4a /xmonad.hs
initial commit
Diffstat (limited to 'xmonad.hs')
-rw-r--r--xmonad.hs10
1 files changed, 10 insertions, 0 deletions
diff --git a/xmonad.hs b/xmonad.hs
new file mode 100644
index 0000000..19089f0
--- /dev/null
+++ b/xmonad.hs
@@ -0,0 +1,10 @@
1import XMonad
2import XMonad.Config.Gnome
3import XMonad.Layout.NoBorders
4main = xmonad
5 gnomeConfig {
6 terminal = "xterm"
7 , layoutHook = smartBorders (layoutHook gnomeConfig)
8 , modMask = mod4Mask
9 }
10