aboutsummaryrefslogtreecommitdiffstats
path: root/XMonad/Config/Gnome.hs
diff options
context:
space:
mode:
Diffstat (limited to 'XMonad/Config/Gnome.hs')
-rw-r--r--XMonad/Config/Gnome.hs32
1 files changed, 32 insertions, 0 deletions
diff --git a/XMonad/Config/Gnome.hs b/XMonad/Config/Gnome.hs
new file mode 100644
index 0000000..5aa2f3e
--- /dev/null
+++ b/XMonad/Config/Gnome.hs
@@ -0,0 +1,32 @@
+{-# OPTIONS_GHC -fno-warn-missing-signatures #-}
+
+-----------------------------------------------------------------------------
+-- |
+-- Module : XMonad.Config.Gnome
+-- Copyright : (c) Spencer Janssen <sjanssen@cse.unl.edu>
+-- License : BSD
+--
+-- Maintainer : Spencer Janssen <sjanssen@cse.unl.edu>
+--
+-- This module provides a config suitable for use with the GNOME desktop
+-- environment.
+
+module XMonad.Config.Gnome (
+ -- * Usage
+ -- -- $usage
+ gnomeConfig
+ ) where
+
+import XMonad
+import XMonad.Config.Desktop
+
+-- $usage
+-- To use this module, start with the following @~\/.xmonad\/xmonad.hs@:
+--
+-- > import XMonad
+-- > import XMonad.Config.Gnome
+-- >
+-- > main = xmonad gnomeConfig
+--
+
+gnomeConfig = desktopConfig { terminal = "gnome-terminal" }