diff options
author | jao <jao@gnu.org> | 2017-12-23 03:19:34 +0100 |
---|---|---|
committer | jao <jao@gnu.org> | 2017-12-23 03:21:39 +0100 |
commit | 2920615ab5d902b51d9ddc82cbd39ab5e6279814 (patch) | |
tree | f19e32deac75e39d4a81b3164192a3ce3d62856c | |
parent | d540a97c0f3c34bf063daf72ece661a83eacb726 (diff) | |
download | xmobar-2920615ab5d902b51d9ddc82cbd39ab5e6279814.tar.gz xmobar-2920615ab5d902b51d9ddc82cbd39ab5e6279814.tar.bz2 |
Honouring NAString in MPris (-x switch) monitor
Should fix issue #325
-rw-r--r-- | news.md | 7 | ||||
-rw-r--r-- | src/Plugins/Monitors/Mpris.hs | 4 |
2 files changed, 9 insertions, 2 deletions
@@ -8,8 +8,13 @@ _New features_ be setup in either the configuration file (`wmName` and `wmClass`) or using the new flags `-n` adn `-w` (see [issue #323]). -[issue #303]: https://github.com/jaor/xmobar/issues/323 +_Bug fixes_ + + - Honouring -x in MPris monitor ([issue #325]) + +[issue #323]: https://github.com/jaor/xmobar/issues/323 +[issue #325]: https://github.com/jaor/xmobar/issues/325 ## Version 0.24.5 (May, 2017) diff --git a/src/Plugins/Monitors/Mpris.hs b/src/Plugins/Monitors/Mpris.hs index 0228c8e..ed76dc9 100644 --- a/src/Plugins/Monitors/Mpris.hs +++ b/src/Plugins/Monitors/Mpris.hs @@ -85,7 +85,9 @@ dbusClient = unsafePerformIO DC.connectSession runMPRIS :: (MprisVersion a) => a -> String -> [String] -> Monitor String runMPRIS version playerName _ = do metadata <- io $ getMetadata version dbusClient playerName - mapM showWithPadding (makeList version metadata) >>= parseTemplate + if [] == metadata then + getConfigValue naString + else mapM showWithPadding (makeList version metadata) >>= parseTemplate runMPRIS1 :: String -> [String] -> Monitor String runMPRIS1 = runMPRIS MprisVersion1 |