diff options
Diffstat (limited to 'src/Xmobar/Plugins/Monitors/Swap.hs')
| -rw-r--r-- | src/Xmobar/Plugins/Monitors/Swap.hs | 7 | 
1 files changed, 3 insertions, 4 deletions
| diff --git a/src/Xmobar/Plugins/Monitors/Swap.hs b/src/Xmobar/Plugins/Monitors/Swap.hs index e8b2f54..f10afad 100644 --- a/src/Xmobar/Plugins/Monitors/Swap.hs +++ b/src/Xmobar/Plugins/Monitors/Swap.hs @@ -24,9 +24,8 @@ import qualified Xmobar.Plugins.Monitors.Swap.Linux as MS  #endif  swapConfig :: IO MConfig -swapConfig = mkMConfig -        "Swap: <usedratio>%"                    -- template -        ["usedratio", "total", "used", "free"] -- available replacements +swapConfig = mkMConfig "Swap: <usedratio>%" +                       ["usedratio", "total", "used", "free"]  formatSwap :: [Float] -> Monitor [String]  formatSwap (r:xs) = do @@ -34,7 +33,7 @@ formatSwap (r:xs) = do    other <- mapM (showWithColors (showDigits d)) xs    ratio <- showPercentWithColors r    return $ ratio:other -formatSwap _ = return $ replicate 4 "N/A" +formatSwap _ = replicate 4 `fmap` getConfigValue naString  runSwap :: [String] -> Monitor String  runSwap _ = | 
