2020-06-21 10:41:26 +00:00
|
|
|
cabal-version: >=1.10
|
|
|
|
name: my-xmonad
|
|
|
|
version: 0.1.0.0
|
|
|
|
build-type: Simple
|
|
|
|
|
|
|
|
executable my-xmonad
|
|
|
|
main-is: ../xmonad.hs
|
|
|
|
hs-source-dirs: lib
|
|
|
|
other-modules:
|
|
|
|
Config
|
|
|
|
Rofi
|
|
|
|
DescribedSubmap
|
|
|
|
TiledDragging
|
|
|
|
WindowSwallowing
|
2020-08-18 22:25:19 +00:00
|
|
|
FancyBorders
|
2020-12-25 10:53:37 +00:00
|
|
|
WsContexts
|
2020-12-31 14:09:09 +00:00
|
|
|
MultiColumns
|
2021-01-02 16:33:37 +00:00
|
|
|
IndependentScreens
|
2020-12-31 14:09:09 +00:00
|
|
|
--FlexiColumns
|
2020-06-21 10:41:26 +00:00
|
|
|
|
|
|
|
default-language: Haskell2010
|
|
|
|
ghc-options: -Wall -threaded -fno-warn-missing-signatures
|
|
|
|
build-depends:
|
|
|
|
base -any,
|
2021-10-21 10:09:31 +00:00
|
|
|
xmonad >=0.16.99999 && < 0.18,
|
2020-12-25 10:53:37 +00:00
|
|
|
xmonad-contrib >=0.16,
|
2020-06-21 10:41:26 +00:00
|
|
|
dbus >=1.2.12,
|
|
|
|
iwlib >=0.1.0,
|
|
|
|
netlink >=1.1.1.0,
|
|
|
|
containers >=0.6.2.1,
|
|
|
|
utf8-string >=1.0.1.1,
|
|
|
|
text >=1.2.4.0,
|
2021-10-21 10:09:31 +00:00
|
|
|
process,
|
2021-01-02 16:33:37 +00:00
|
|
|
-- todo remove this again
|
2021-10-21 10:09:31 +00:00
|
|
|
X11>=1.10 && < 1.11
|
2021-01-02 16:33:37 +00:00
|
|
|
|