diff options
author | jao <jao@gnu.org> | 2022-08-09 22:50:48 +0100 |
---|---|---|
committer | jao <jao@gnu.org> | 2022-08-09 22:53:42 +0100 |
commit | bc1b2d6defbd9dc7cf8a5a103e9672fdb9a715f0 (patch) | |
tree | 74d719ed2435083e7d0bd37ec789c2f659c96bb7 | |
parent | 6640f4d36dc401b9182f91be7179c9d16a212e07 (diff) | |
download | xmobar-config-bc1b2d6defbd9dc7cf8a5a103e9672fdb9a715f0.tar.gz xmobar-config-bc1b2d6defbd9dc7cf8a5a103e9672fdb9a715f0.tar.bz2 |
xmobar-exwm -> xmobar-single
-rw-r--r-- | cabal.project | 2 | ||||
-rw-r--r-- | readme.md | 10 | ||||
-rw-r--r-- | src/Single.hs (renamed from src/TopC.hs) | 0 | ||||
-rw-r--r-- | xmobar-config.cabal | 28 |
4 files changed, 21 insertions, 19 deletions
diff --git a/cabal.project b/cabal.project index 7d6bef1..4c9d10e 100644 --- a/cabal.project +++ b/cabal.project @@ -1,4 +1,2 @@ packages: ., ../xmobar flags: +all_extensions -targets: ex:xmobar-exwm - @@ -2,14 +2,18 @@ Configurations for xmobar, as Haskell programs. -Here's `xmobar-top`: +Here's (an old version of) `xmobar-top`: ![xmobar at the top of my screen](img/xmobar-top.png) -a screnshot of `xmobar-bottom`: +and an (equally outdated) screnshot of `xmobar-bottom`: ![xmobar at the bottom of my screen](img/xmobar-bottom.png) -and `xmobar-exwm` (sort of) combining the two: +which are meant to be used together; `xmobar-single` combines the two, +*mutatis mutandis*: ![xmobar when i'm using exwm](img/xmobar-exwm.png) + +There is also a couple of bars that output text, for use within an emacs tab +bar (`xmobar-emacs`) and with swaybar (`xmobar-sway`). diff --git a/src/TopC.hs b/src/Single.hs index c8e5115..c8e5115 100644 --- a/src/TopC.hs +++ b/src/Single.hs diff --git a/xmobar-config.cabal b/xmobar-config.cabal index d6554f5..f83f74a 100644 --- a/xmobar-config.cabal +++ b/xmobar-config.cabal @@ -20,8 +20,8 @@ library other-modules: Paths_xmobar_config default-language: Haskell2010 -executable xmobar-exwm - main-is: TopC.hs +executable xmobar-single + main-is: Single.hs hs-source-dirs: src ghc-options: -rtsopts -with-rtsopts=-V0 -threaded build-depends: base, xmobar, xmobar-config @@ -34,19 +34,19 @@ executable xmobar-emacs 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-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-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-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 |