From 7f1ddd1d21e8d444f742cc5819fa0a959f5534d2 Mon Sep 17 00:00:00 2001 From: Charles Date: Thu, 5 Mar 2020 17:33:50 +0100 Subject: Removing tmux, profile Refactoring zsh and vim config --- xmonad.hs | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 xmonad.hs (limited to 'xmonad.hs') 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' &" -- cgit