summaryrefslogtreecommitdiff
path: root/xmonad.hs
blob: 4ea6da9ab3afa6e832abf4b5be754c96a4eb0919 (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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{-

Docs:

- EZConfig: https://hackage.haskell.org/package/xmonad-contrib-0.13/docs/XMonad-Util-EZConfig.html#g:3
- Media keys: https://hackage.haskell.org/package/X11-1.9/docs/Graphics-X11-ExtraTypes-XF86.html
- Audio control: https://xmonadhaskell.wordpress.com/2018/10/24/xmonad-audio-control/

- XMonad API: https://hackage.haskell.org/package/xmonad
- Contrib API: https://hackage.haskell.org/package/xmonad-contrib

-}

import Graphics.X11.ExtraTypes.XF86
import XMonad
import XMonad.Actions.CopyWindow
import XMonad.Config
import XMonad.Hooks.EwmhDesktops (ewmh)
import XMonad.Hooks.ManageDocks
import XMonad.Layout.BinarySpacePartition
import XMonad.Layout.Dwindle as Dwindle
import XMonad.Layout.LayoutModifier
import XMonad.Layout.NoBorders
import XMonad.Layout.ResizableTile
import XMonad.Layout.Spacing
import XMonad.Layout.Spiral
import XMonad.Layout.Tabbed
import XMonad.Layout.TwoPane
import XMonad.Util.CustomKeys (customKeys)
import XMonad.Util.EZConfig (additionalKeys)

nixBin :: String
nixBin = "/home/ben/.nix-profile/bin/"

altMask :: KeyMask
altMask = mod1Mask

-- Colors
cyan = "#2aa198" -- ^ solarized cyan
base3 = "#eee8d4" -- ^ solarized base3

insKeys :: XConfig l -> [((KeyMask, KeySym), X ())]
insKeys conf@(XConfig {modMask = modMask}) =
  [ ((modMask, xK_y), spawn $ nixBin <> "passmenu")
  , ((modMask, xK_u), spawn $ nixBin <> "rofi -sidebar-mode -show window")
  , ((modMask, xK_i), spawn $ "rofi -sidebar-mode -show run")

  , ((modMask, xK_o), spawn $ nixBin <> "dmenu_run")
  , ((modMask, xK_e), spawn "emacsclient -c")

  , ((modMask .|. altMask, xK_h), spawn "home-manager switch")

  -- sticky windows
  , ((modMask, xK_a ), windows copyToAll) -- @@ Make focused window always visible
  , ((modMask .|. shiftMask, xK_a ),  killAllOtherCopies) -- @@ Toggle window state back

  -- media/ function keys
  -- backlight
  , ((0, xK_F5), spawn "xbacklight -dec 5")
  , ((0, xK_F6), spawn "xbacklight -inc 5")
  , ((0, xF86XK_KbdBrightnessDown), spawn "xbacklight -dec 5")
  , ((0, xF86XK_KbdBrightnessUp), spawn "xbacklight -inc 5")
  -- volume controls
  , ((0, xK_F1), amixer "toggle")
  , ((0, xK_F2), amixer "2%+")
  , ((0, xK_F3), amixer "2%-")

  , ((0, xF86XK_AudioMute), amixer "toggle")
  , ((0, xF86XK_AudioLowerVolume), amixer "2%-")
  , ((0, xF86XK_AudioRaiseVolume), amixer "2%+")
  ]

amixer :: String -> X ()
amixer cmd = spawn $ "amixer -q sset Master " <> cmd

-- | Golden-ratio spiral
goldenSpiral :: SpiralWithDir a
goldenSpiral = spiral (6 / 7)

myWorkspaces :: [String]
myWorkspaces = ["1:chat", "2:emacs", "3:work"] ++ map show [4 .. 9] ++ ["0"]

addSpace :: l a -> ModifiedLayout Spacing l a
addSpace = spacingRaw
  True (Border 5 5 5 5)
  True (Border 5 5 5 5)
  True

myTabCfg = def { fontName = "xft:mononoki:size=10:ant"
               , activeBorderColor = cyan
               , inactiveBorderColor = base3
               , activeColor = base3
               , inactiveColor = base3
               }

myLayout = avoidStruts $
  noBorders (tabbed shrinkText myTabCfg) -- default tab config
  ||| tiled
  ||| Mirror tiled
  -- ||| noBorders Full
  ||| twopane
  ||| Mirror twopane
  ||| emptyBSP
  ||| goldenSpiral
  ||| Spiral L Dwindle.CW (3/2) (11/10) -- L means the non-main windows are put to the left.
  where
     -- The last parameter is fraction to multiply the slave window heights
     -- with. Useless here.
     tiled = addSpace $ ResizableTall nmaster delta ratio []
     -- In this layout the second pane will only show the focused window.
     twopane = addSpace $ TwoPane delta ratio
     -- The default number of windows in the master pane
     nmaster = 1
     -- Default proportion of screen occupied by master pane
     ratio   = 1/2
     -- Percent of screen to increment by when resizing panes
     delta   = 3/100

myConf = additionalKeys c (insKeys c)
  where c = def
          { modMask = mod4Mask -- ^ super instead of alt
          , normalBorderColor = base3
          , focusedBorderColor = cyan
          , borderWidth = 3
          , manageHook = manageDocks <+> manageHook def
          , layoutHook = myLayout
          , terminal = "/home/ben/.nix-profile/bin/xterm"
          , workspaces = myWorkspaces
          }

main :: IO ()
main = xmonad $ ewmh $ docks $ myConf