blob: 578944c134e2b208f134a800a09dc92a283bed6e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
-----------------------------------------------------------------------------
-- |
-- Module : Plugins.Monitors.Load.Common
-- Copyright : Finn Lawler
-- License : BSD-style (see LICENSE)
--
-- Author : Finn Lawler <flawler@cs.tcd.ie>
-- Maintainer : jao <mail@jao.io>
-- Stability : unstable
-- Portability : unportable
--
-- A load average monitor for Xmobar. Adapted from
-- Xmobar.Plugins.Monitors.Thermal by Juraj Hercek.
--
-----------------------------------------------------------------------------
module Xmobar.Plugins.Monitors.Load.Common (
Result(..)
) where
data Result = Result [Float] | NA
|