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
|
name: xmonad-ng
version: 0.2.1.1
synopsis: azahi's XMonad configuration
description: azahi's XMonad configuration based on stolen code and bad Haskell knowledge
homepage: https://github.com/azahi/xmonad-ng
license: BSD3
license-file: LICENSE
author: azahi
maintainer: azahi@teknik.io
copyright: Copyright (c) 2018 azahi
category: System
build-type: Simple
stability: experimental
cabal-version: >= 1.10
source-repository head
type: git
location: https://github.com/azahi/xmonad-ng
library
ghc-options: -Wall
hs-source-dirs: src
default-language: Haskell2010
exposed-modules: XMonad.Actions.FloatSnapSpaced
, XMonad.Actions.PerConditionKeys
build-depends: base >= 4.9.1 && < 4.10
, containers >= 0.5.7 && < 0.6
, xmonad >= 0.13 && < 0.14
, xmonad-contrib >= 0.13 && < 0.14
executable xmonad-ng
main-is: Main.hs
ghc-options: -Wall
hs-source-dirs: src
default-language: Haskell2010
other-extensions: DeriveDataTypeable
, MultiParamTypeClasses
, TypeSynonymInstances
other-modules: XMonad.Actions.FloatSnapSpaced
, XMonad.Actions.PerConditionKeys
, XMonad.Custom.Bindings
, XMonad.Custom.Event
, XMonad.Custom.Layout
, XMonad.Custom.Log
, XMonad.Custom.Manage
, XMonad.Custom.Misc
, XMonad.Custom.Navigation
, XMonad.Custom.Projects
, XMonad.Custom.Scratchpads
, XMonad.Custom.Startup
, XMonad.Custom.Theme
, XMonad.Custom.Workspaces
build-depends: X11 >= 1.8 && < 1.9
, base >= 4.9.1 && < 4.10
, containers >= 0.5.7 && < 0.6
, directory >= 1.3 && < 1.4
, filepath >= 1.4.1 && < 1.5
, text >= 1.2.3 && < 1.3
, time >= 1.6 && < 1.7
, xmonad >= 0.13 && < 0.14
, xmonad-contrib >= 0.13 && < 0.14
, xmonad-extras >= 0.13 && < 0.14
|