diff options
author | jao <jao@gnu.org> | 2020-02-23 20:18:02 +0000 |
---|---|---|
committer | jao <jao@gnu.org> | 2020-02-23 20:18:02 +0000 |
commit | 4396e50cbb447f2d23d61dd6cfbd1b5458b664e1 (patch) | |
tree | eed3f489101719bef8eec0a915a4f596e913adb4 | |
parent | 7339235dae4da5a9e11930ec956869454c1dd9ad (diff) | |
download | xmobar-config-4396e50cbb447f2d23d61dd6cfbd1b5458b664e1.tar.gz xmobar-config-4396e50cbb447f2d23d61dd6cfbd1b5458b664e1.tar.bz2 |
threaded runtime (for the new coalescing)
-rw-r--r-- | stack.yaml | 2 | ||||
-rw-r--r-- | xmobar-config.cabal | 8 |
2 files changed, 6 insertions, 4 deletions
@@ -7,6 +7,8 @@ packages: flags: xmobar: all_extensions: true + with_threaded : true extra-deps: - iwlib-0.1.0 +# - netlink-1.1.1.0 diff --git a/xmobar-config.cabal b/xmobar-config.cabal index be2bdee..6c90a13 100644 --- a/xmobar-config.cabal +++ b/xmobar-config.cabal @@ -3,7 +3,7 @@ version: 0.1 description: xmobar configs author: jao maintainer: jao@gnu.org -copyright: 2018, 2019 Jose A Ortega Ruiz +copyright: 2018, 2019, 2020 Jose A Ortega Ruiz license: GPL-3 build-type: Simple cabal-version: >= 1.10 @@ -23,20 +23,20 @@ library executable xmobar-top main-is: Top.hs hs-source-dirs: src - ghc-options: -rtsopts -with-rtsopts=-V0 + 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 + 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 + ghc-options: -rtsopts -with-rtsopts=-V0 -threaded build-depends: base, xmobar, xmobar-config default-language: Haskell2010 |