diff options
| author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2012-10-12 05:05:35 +0200 | 
|---|---|---|
| committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2012-10-12 05:05:35 +0200 | 
| commit | 8218d04c0c0bec2aa04068541ced5cebb888d9dc (patch) | |
| tree | 9bbd7a223045a588bd82e48d682b97e818de16e7 /src/Plugins/Monitors | |
| parent | 2910cf9b1f141b680e6522cb58fc4672b133ffe3 (diff) | |
| parent | 30902974c1a21990930f302c50e136954aed4c76 (diff) | |
| download | xmobar-8218d04c0c0bec2aa04068541ced5cebb888d9dc.tar.gz xmobar-8218d04c0c0bec2aa04068541ced5cebb888d9dc.tar.bz2 | |
Merge branch 'soul9-disk'
Diffstat (limited to 'src/Plugins/Monitors')
| -rw-r--r-- | src/Plugins/Monitors/Disk.hs | 34 | ||||
| -rw-r--r-- | src/Plugins/Monitors/Mpris.hs | 7 | 
2 files changed, 32 insertions, 9 deletions
| diff --git a/src/Plugins/Monitors/Disk.hs b/src/Plugins/Monitors/Disk.hs index 554be05..73bd5b7 100644 --- a/src/Plugins/Monitors/Disk.hs +++ b/src/Plugins/Monitors/Disk.hs @@ -43,7 +43,7 @@ mountedDevices req = do    parse `fmap` mapM canon (devs s)    where      canon (d, p) = do {d' <- canonicalizePath d; return (d', p)} -    devs =  filter isDev . map (firstTwo . B.words) . B.lines +    devs = filter isDev . map (firstTwo . B.words) . B.lines      parse = map undev . filter isReq      firstTwo (a:b:_) = (B.unpack a, B.unpack b)      firstTwo _ = ("", "") @@ -51,6 +51,26 @@ mountedDevices req = do      isReq (d, p) = p `elem` req || drop 5 d `elem` req      undev (d, f) = (drop 5 d, f) +diskDevices :: [String] -> IO [(DevName, Path)] +diskDevices req = do +  s <- B.readFile "/proc/diskstats" +  parse `fmap` mapM canon (devs s) +  where +    canon (d, p) = do {d' <- canonicalizePath (d); return (d', p)} +    devs = map (third . B.words) . B.lines +    parse = map undev . filter isReq +    third (_:_:c:_) = ("/dev/" ++ (B.unpack c), B.unpack c) +    third _ = ("", "") +    isReq (d, p) = p `elem` req || drop 5 d `elem` req +    undev (d, f) = (drop 5 d, f) + +mountedOrDiskDevices :: [String] -> IO [(DevName, Path)] +mountedOrDiskDevices req = do +  mnt <- mountedDevices req +  case mnt of +       []    -> diskDevices req +       other -> return other +  diskData :: IO [(DevName, [Float])]  diskData = do    s <- B.readFile "/proc/diskstats" @@ -109,17 +129,17 @@ runDiskIO' (tmp, xs) = do  runDiskIO :: DevDataRef -> [(String, String)] -> [String] -> Monitor String  runDiskIO dref disks _ = do -  mounted <- io $ mountedDevices (map fst disks) -  dat <- io $ mountedData dref (map fst mounted) -  strs <- mapM runDiskIO' $ devTemplates disks mounted dat +  dev <- io $ mountedOrDiskDevices (map fst disks) +  dat <- io $ mountedData dref (map fst dev) +  strs <- mapM runDiskIO' $ devTemplates disks dev dat    return $ unwords strs  startDiskIO :: [(String, String)] ->                 [String] -> Int -> (String -> IO ()) -> IO ()  startDiskIO disks args rate cb = do -  mounted <- mountedDevices (map fst disks) -  dref <- newIORef (map (\d -> (fst d, repeat 0)) mounted) -  _ <- mountedData dref (map fst mounted) +  dev <- mountedOrDiskDevices (map fst disks) +  dref <- newIORef (map (\d -> (fst d, repeat 0)) dev) +  _ <- mountedData dref (map fst dev)    runM args diskIOConfig (runDiskIO dref disks) rate cb  fsStats :: String -> IO [Integer] diff --git a/src/Plugins/Monitors/Mpris.hs b/src/Plugins/Monitors/Mpris.hs index b899a16..98b4c0f 100644 --- a/src/Plugins/Monitors/Mpris.hs +++ b/src/Plugins/Monitors/Mpris.hs @@ -66,12 +66,15 @@ instance MprisVersion MprisVersion2 where                              ["org.mpris.MediaPlayer2.Player", "Metadata"]      fieldsList MprisVersion2 = [ "xesam:album", "xesam:artist", "mpris:artUrl" -                               , "mpris:length", "xesam:title", "xesam:trackNumber" +                               , "mpris:length", "xesam:title", +                                 "xesam:trackNumber", "xesam:composer", +                                 "xesam:genre"                                 ]  mprisConfig :: IO MConfig  mprisConfig = mkMConfig "<artist> - <title>" -                [ "album", "artist", "arturl", "length" , "title", "tracknumber" +                [ "album", "artist", "arturl", "length" +                , "title", "tracknumber" , "composer", "genre"                  ]  dbusClient :: DC.Client | 
