taffybar-0.3.0: src/System/Taffybar/FSMonitor.hs
-----------------------------------------------------------------------------
-- |
-- Module : System.Taffybar.FSMonitor
-- Copyright : (c) José A. Romero L.
-- License : BSD3-style (see LICENSE)
--
-- Maintainer : José A. Romero L. <escherdragon@gmail.com>
-- Stability : unstable
-- Portability : unportable
--
-- Simple text widget that monitors the current usage of selected disk
-- partitions by regularly parsing the output of the df command in Linux
-- systems.
--
-----------------------------------------------------------------------------
module System.Taffybar.FSMonitor ( fsMonitorNew ) where
import Graphics.UI.Gtk
import System.Process (readProcess)
import System.Taffybar.Widgets.PollingLabel
-- | Creates a new filesystem monitor widget. It contains one 'PollingLabel'
-- that displays the data returned by the df command. The usage level of all
-- requested partitions is extracted in one single operation.
fsMonitorNew :: Double -- ^ Polling interval (in seconds, e.g. 500)
-> [String] -- ^ Names of the partitions to monitor (e.g. [\"\/\", \"\/home\"])
-> IO Widget
fsMonitorNew interval fsList = do
label <- pollingLabelNew "" interval $ showFSInfo fsList
widgetShowAll label
return $ toWidget label
showFSInfo :: [String] -> IO String
showFSInfo fsList = do
fsOut <- readProcess "df" (["-kP"] ++ fsList) ""
let fss = map ((take 2) . reverse . words) $ drop 1 $ lines fsOut
return $ unwords $ map ((\s -> "[" ++ s ++ "]") . unwords) fss