summaryrefslogtreecommitdiffhomepage
path: root/xmobar-config.cabal
blob: d219a8df99ffdb98049392b15e9ff20878092110 (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
name:           xmobar-config
version:        0.1
description:    xmobar configs
author:         jao
maintainer:     jao@gnu.org
copyright:      2018, 2019, 2020, 2022 Jose A Ortega Ruiz
license:        GPL-3
build-type:     Simple
cabal-version:  >= 1.10

extra-source-files:
    readme.md

library
  hs-source-dirs: src/lib
  exposed-modules: Config, Monitors, Bottom, Music, GMPDP
  build-depends: base >=4.7 && <5, async > 2.2, stm >= 2.5,
                 aeson, text, bytestring, http-conduit,
                 hinotify, xmobar
  other-modules: Paths_xmobar_config
  default-language: Haskell2010

executable xmobar-top
  main-is: Top.hs
  hs-source-dirs: src
  ghc-options: -rtsopts -with-rtsopts=-V0 -threaded
  build-depends: base, xmobar, xmobar-config
  default-language: Haskell2010

executable xmobar-exwm
  main-is: TopC.hs
  hs-source-dirs: src
  ghc-options: -rtsopts -with-rtsopts=-V0 -threaded
  build-depends: base, xmobar, xmobar-config
  default-language: Haskell2010

executable xmobar-bottom
  main-is: Bottom.hs
  hs-source-dirs: src
  ghc-options: -rtsopts -with-rtsopts=-V0  -threaded
  build-depends: base, xmobar, xmobar-config
  default-language: Haskell2010

executable xmobar-sway
  main-is: Sway.hs
  hs-source-dirs: src
  ghc-options: -rtsopts -with-rtsopts=-V0 -threaded
  build-depends: base, xmobar, xmobar-config
  default-language: Haskell2010