----------------------------------------------------------------------------- -- | -- Module : Plugins.Monitors.CoreTemp -- Copyright : (c) Juraj Hercek -- License : BSD-style (see LICENSE) -- -- Maintainer : Juraj Hercek -- Stability : unstable -- Portability : unportable -- -- A core temperature monitor for Xmobar -- ----------------------------------------------------------------------------- module Plugins.Monitors.CoreTemp where import Plugins.Monitors.Common import Plugins.Monitors.CoreCommon coreTempConfig :: IO MConfig coreTempConfig = mkMConfig "Temp: C" -- template (zipWith (++) (repeat "core") (map show [0 :: Int ..])) -- available -- replacements runCoreTemp :: [String] -> Monitor String runCoreTemp _ = do let dir = "/sys/bus/platform/devices" file = "temp1_input" pattern = "coretemp." divisor = 1e3 :: Double failureMessage = "CoreTemp: N/A" checkedDataRetrieval failureMessage dir file pattern divisor