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
|
name: xmobar-config
version: 0.1
description: xmobar configs
author: jao
maintainer: jao@gnu.org
copyright: 2018, 2019, 2020, 2022, 2023 Jose A Ortega Ruiz
license: GPL-3
build-type: Simple
cabal-version: >= 1.10
extra-source-files:
readme.md
library
hs-source-dirs: lib
exposed-modules: Config, Monitors, Bottom
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-single
main-is: Single.hs
hs-source-dirs: src
ghc-options: -rtsopts -with-rtsopts=-V0 -threaded
build-depends: base, xmobar, xmobar-config
default-language: Haskell2010
executable xmobar-emacs
main-is: Emacs.hs
hs-source-dirs: src
ghc-options: -rtsopts -with-rtsopts=-V0 -threaded
build-depends: base, xmobar, 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-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
executable xmobar-test
main-is: Test.hs
hs-source-dirs: src
ghc-options: -rtsopts -with-rtsopts=-V0 -threaded
build-depends: base, xmobar, xmobar-config
default-language: Haskell2010
|