diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-03-05 17:33:50 +0100 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-03-05 17:33:50 +0100 |
| commit | 7f1ddd1d21e8d444f742cc5819fa0a959f5534d2 (patch) | |
| tree | 618a86238cc0fecc4497556c0291a1cb469cfaf9 /xmonad.hs | |
| parent | 7d450ffb8caf12fa6bed250b6a67d3ecb237f904 (diff) | |
| download | dotfiles-7f1ddd1d21e8d444f742cc5819fa0a959f5534d2.tar.gz dotfiles-7f1ddd1d21e8d444f742cc5819fa0a959f5534d2.tar.bz2 dotfiles-7f1ddd1d21e8d444f742cc5819fa0a959f5534d2.zip | |
Removing tmux, profile Refactoring zsh and vim config
Diffstat (limited to 'xmonad.hs')
| -rw-r--r-- | xmonad.hs | 24 |
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' &" |
