aboutsummaryrefslogtreecommitdiff
path: root/conf/xmonad/xmonad.hs
blob: cba451739fd2501a56dfd86c713c100388903b2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
import XMonad
import XMonad.Util.EZConfig
import XMonad.StackSet

import XMonad.Hooks.EwmhDesktops

import XMonad.Layout.NoBorders
import XMonad.Layout.Tabbed
import XMonad.Layout.Reflect

import XMonad.Util.Themes
import XMonad.Util.NamedScratchpad

import XMonad.Actions.SpawnOn
import XMonad.Actions.CycleWS
import XMonad.Actions.WindowBringer
import XMonad.Actions.GroupNavigation

import System.Exit
import Data.Maybe

customTabTheme = (theme xmonadTheme)
  { fontName      = "xft:Iosevka Medium-12"
  , decoHeight    = 20
  , activeTextColor     = "#222222"
  , activeColor         = "#909737"
  , inactiveTextColor   = "#999999"
  , inactiveColor       = "#161616"
  , activeBorderColor   = "#909737"
  , inactiveBorderColor = "#161616" }

availableLayouts = smartBorders $ tabs ||| tilesLM ||| tilesRM ||| tilesTM ||| tilesBM
  where
    tabs    = tabbed shrinkText customTabTheme
    tilesLM = Tall 1 delta ratio
    tilesRM = reflectHoriz tilesLM
    tilesTM = Mirror tilesLM
    tilesBM = reflectVert tilesTM
    ratio   = 1/2
    delta   = 3/100

windowBringerDmenuConfig = def { menuCommand  = "rofi"
                               , menuArgs     = [ "-p", "win", "-dmenu", "-i" ] }

scratchpads = [ NS "terminal" "kitty --class=scratchterm" (className =? "scratchterm")
                   (customFloating $ RationalRect (1/6) (1/6) (2/3) (2/3))
              , NS "browser" "firefox" (className =? "Firefox")
                   (customFloating $ RationalRect 0 0 1 (2/3))
              , NS "zeal" "zeal" (className =? "Zeal")
                   (customFloating $ RationalRect (1/20) (1/20) (18/20) (18/20))
              , NS "telegram" "telegram-desktop" (className =? "TelegramDesktop")
                   (customFloating $ RationalRect (1/6) (1/6) (2/3) (2/3)) ]

main = xmonad $ ewmh
              $ defaultConfig
  { modMask             = mod4Mask -- super key as modifier
  , borderWidth         = 3
  , normalBorderColor   = "#161616"
  , focusedBorderColor  = "#909737"
  , terminal            = "kitty"
  , handleEventHook     = handleEventHook defaultConfig <+> fullscreenEventHook
  , layoutHook          = availableLayouts
  , manageHook          = namedScratchpadManageHook scratchpads
  , logHook             = historyHook }
  `removeKeysP`
  [ "M-S-<Return>", "M-q", "M-S-q", "M-S-c", "M-<Space>" ]
  `additionalKeysP`
-- xmonad session control
  [ ("C-M1-<Escape>"    , io (exitWith ExitSuccess))
  , ("C-M1-<Backspace>" , spawn "xmonad --restart")
-- application launchers
  , ("M-p"           , spawn "rofi -show combi")
  , ("M-<Return>"    , spawn "kitty")
  , ("M-S-<Return>"  , spawn "vim -g")
-- window management
  , ("M-q"           , windows $ shift "NSP")
  , ("M-S-q"         , kill)
  , ("M-S-m"         , windows swapMaster)
  , ("M-<Backspace>" , nextMatch History (return True))
-- window bringer
  , ("M-a"           , gotoMenuConfig  windowBringerDmenuConfig)
  , ("M-S-a"         , bringMenuConfig windowBringerDmenuConfig)
-- workspace management
  , ("M-w l"         , sendMessage NextLayout)
  , ("M-w p"         , toggleWS' ["NSP"])
  , ("M-w j"         , moveTo Next nonEmptyWS)
  , ("M-w k"         , moveTo Prev nonEmptyWS)
  , ("M-S-w j"       , shiftTo Next nonEmptyWS >> moveTo Next nonEmptyWS)
  , ("M-S-w k"       , shiftTo Prev nonEmptyWS >> moveTo Prev nonEmptyWS)
-- scratchpads
  , ("M-s t"         , namedScratchpadAction scratchpads "terminal")
  , ("M-s b"         , namedScratchpadAction scratchpads "browser")
  , ("M-s h"         , namedScratchpadAction scratchpads "zeal")
  , ("M-s m"         , namedScratchpadAction scratchpads "telegram")
-- floating placement
  , ("M-f j"         , withFocused $ snapFloatingBottom)
  , ("M-f k"         , withFocused $ snapFloatingTop)
  , ("M-f h"         , withFocused $ snapFloatingRight)
  , ("M-f l"         , withFocused $ snapFloatingLeft)
-- system control
  , ("M-c <Up>"      , spawn "amixer sset Master 10%+")
  , ("M-c <Down>"    , spawn "amixer sset Master 10%-")
  , ("M-c m"         , spawn "amixer sset Master toggle") ]
  `additionalKeys`
  [ ((noModMask, xK_Menu) , namedScratchpadAction scratchpads "terminal") ]

snapFloatingBottom = windows . (flip XMonad.StackSet.float $ RationalRect 0     (1/3) 1     (2/3))
snapFloatingTop    = windows . (flip XMonad.StackSet.float $ RationalRect 0     0     1     (2/3))
snapFloatingRight  = windows . (flip XMonad.StackSet.float $ RationalRect 0     0     (1/2) 1    )
snapFloatingLeft   = windows . (flip XMonad.StackSet.float $ RationalRect (1/2) 0     (1/2) 1    )

nonEmptyWS = WSIs $ return (\w -> nonNSP w && nonEmpty w)
  where nonNSP (Workspace tag _ _) = tag /= "NSP"
        nonEmpty = isJust . stack