summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorjao <jao@gnu.org>2014-09-28 00:24:15 +0200
committerjao <jao@gnu.org>2014-09-28 00:25:54 +0200
commit6b9dfabf23b7c48a86c3553a63ebb3924bea8d46 (patch)
tree96746eb0ff0f24c5f10a453921642f91a9184dd6
parenta04850b0cbe4355dc7bd083a353fabdc644a24fb (diff)
downloadxmobar-6b9dfabf23b7c48a86c3553a63ebb3924bea8d46.tar.gz
xmobar-6b9dfabf23b7c48a86c3553a63ebb3924bea8d46.tar.bz2
Upgrade to libmpd 0.9
-rw-r--r--news.md1
-rw-r--r--src/Plugins/Monitors/MPD.hs10
-rw-r--r--xmobar.cabal2
3 files changed, 9 insertions, 4 deletions
diff --git a/news.md b/news.md
index f25885c..4de2632 100644
--- a/news.md
+++ b/news.md
@@ -22,6 +22,7 @@ _New features_
collection of icons to use for successive integer variable values,
thanks to Alexander Shabalin (see [pull request #192] and the
documentation for details).
+ - Upgrade to libmpd 0.9.
_Bug fixes_
diff --git a/src/Plugins/Monitors/MPD.hs b/src/Plugins/Monitors/MPD.hs
index 1a49ad3..e02a747 100644
--- a/src/Plugins/Monitors/MPD.hs
+++ b/src/Plugins/Monitors/MPD.hs
@@ -75,7 +75,7 @@ mpdReady _ = do
-- Only cases where MPD isn't responding is an issue; bogus information at
-- least won't hold xmobar up.
Left M.NoMPD -> return False
- Left M.TimedOut -> return False
+ Left (M.ConnectionError _) -> return False
Left _ -> return True
mopts :: [String] -> IO MOpts
@@ -96,8 +96,12 @@ parseMPD (Right st) song opts = do
where s = M.stState st
ss = show s
si = stateGlyph s opts
- vol = int2str $ M.stVolume st
- (p, t) = M.stTime st
+ vol = int2str $ case M.stVolume st of
+ Just x -> x
+ Nothing -> 0
+ (p, t) = case M.stTime st of
+ Just x -> x
+ Nothing -> (0, 0)
[lap, len, remain] = map showTime [floor p, t, max 0 (t - floor p)]
b = if t > 0 then realToFrac $ p / fromIntegral t else 0
plen = int2str $ M.stPlaylistLength st
diff --git a/xmobar.cabal b/xmobar.cabal
index 58676a5..13a74a9 100644
--- a/xmobar.cabal
+++ b/xmobar.cabal
@@ -146,7 +146,7 @@ executable xmobar
cpp-options: -DIWLIB
if flag(with_mpd) || flag(all_extensions)
- build-depends: libmpd == 0.8.*
+ build-depends: libmpd == 0.9.*
other-modules: Plugins.Monitors.MPD
cpp-options: -DLIBMPD