summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--cabal.project2
-rw-r--r--readme.md10
-rw-r--r--src/Single.hs (renamed from src/TopC.hs)0
-rw-r--r--xmobar-config.cabal28
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
-
diff --git a/readme.md b/readme.md
index 873a19a..c725aaa 100644
--- a/readme.md
+++ b/readme.md
@@ -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