diff options
Diffstat (limited to 'src/Xmobar/Plugins')
| -rw-r--r-- | src/Xmobar/Plugins/Monitors/CoreTemp.hs | 5 | 
1 files changed, 2 insertions, 3 deletions
| diff --git a/src/Xmobar/Plugins/Monitors/CoreTemp.hs b/src/Xmobar/Plugins/Monitors/CoreTemp.hs index e5c494e..ac1d37a 100644 --- a/src/Xmobar/Plugins/Monitors/CoreTemp.hs +++ b/src/Xmobar/Plugins/Monitors/CoreTemp.hs @@ -20,9 +20,8 @@ import Xmobar.Plugins.Monitors.Common  -- | Generate Config with a default template and options.  coreTempConfig :: IO MConfig  coreTempConfig = mkMConfig coreTempTemplate coreTempOptions -  where coreTempTemplate = "Temp: <total>°C" -        coreTempOptions = map (("core" ++) . show) [0 :: Int ..] ++ -                          ["total"] +  where coreTempTemplate = "Temp: <core0>°C" +        coreTempOptions = map (("core" ++) . show) [0 :: Int ..]  -- | FilePaths to read temperature from. Strings are seperated, where to  -- insert numbers. | 
