summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorBen Boeckel <mathstuf@gmail.com>2015-09-26 15:14:39 -0400
committerBen Boeckel <mathstuf@gmail.com>2015-09-26 15:15:33 -0400
commitc6071cc0da601851381a7fd2954923556dcbc802 (patch)
tree330ddace4791daa4d8d1d93e7e2b15e4726a6540
parent986aaad363ceb3fb946929648b7e496f03491f1a (diff)
downloadxmobar-c6071cc0da601851381a7fd2954923556dcbc802.tar.gz
xmobar-c6071cc0da601851381a7fd2954923556dcbc802.tar.bz2
mpd: update on option changes as well
Now that flags are watched as well, updates should be triggered on option changes.
-rw-r--r--src/Plugins/Monitors/MPD.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Plugins/Monitors/MPD.hs b/src/Plugins/Monitors/MPD.hs
index b54962e..0efceb1 100644
--- a/src/Plugins/Monitors/MPD.hs
+++ b/src/Plugins/Monitors/MPD.hs
@@ -63,7 +63,7 @@ runMPD args = do
mpdWait :: IO ()
mpdWait = do
- status <- M.withMPD $ M.idle [M.PlayerS, M.MixerS]
+ status <- M.withMPD $ M.idle [M.PlayerS, M.MixerS, M.OptionsS]
case status of
Left _ -> threadDelay 10000000
_ -> return ()