aboutsummaryrefslogtreecommitdiff
path: root/xmonad.hs
diff options
context:
space:
mode:
Diffstat (limited to 'xmonad.hs')
-rw-r--r--xmonad.hs24
1 files changed, 24 insertions, 0 deletions
diff --git a/xmonad.hs b/xmonad.hs
new file mode 100644
index 0000000..608c9cc
--- /dev/null
+++ b/xmonad.hs
@@ -0,0 +1,24 @@
+import XMonad
+import XMonad.Config.Desktop
+
+-- Utilities
+import XMonad.Util.SpawnOnce
+
+myModMask = mod4Mask
+myTerminal = "konsole"
+myTextEditor = "vim"
+myBorderWidth = 2
+
+main = do
+ xmonad $ desktopConfig
+ { modMask = myModMask
+ , terminal = myTerminal
+ , startupHook = myStartupHook
+ , borderWidth = myBorderWidth
+ , normalBorderColor = "#292d3e"
+ , focusedBorderColor = "#bbc5ff"
+ }
+
+myStartupHook = do
+ spawnOnce "redshift &"
+ spawnOnce "xinput disable 'ETPS/2 Elantech Touchpad' &"