monky-2.1.0.0: Monky/Examples/Battery.hs
{-
Copyright 2015,2016 Markus Ongyerth, Stephan Guenther
This file is part of Monky.
Monky is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Monky is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with Monky. If not, see <http://www.gnu.org/licenses/>.
-}
{-# LANGUAGE OverloadedStrings #-}
{-|
Module : Monky.Examples.Battery
Description : An example module instance for the battery module
Maintainer : ongy, moepi
Stability : testing
Portability : Linux
-}
module Monky.Examples.Battery
( getBatteryHandle
, getBatteryHandle'
, BatteryH
)
where
import Formatting
import Data.Text (Text)
import Data.Composition ((.:))
import Monky.Modules
import Monky.Examples.Images
import Monky.Battery hiding (getBatteryHandle, getBatteryHandle')
import qualified Monky.Battery as B (getBatteryHandle, getBatteryHandle')
{- Battery Module -}
batteryColor :: BatteryState -> Int -> Text
batteryColor BatLoading _ = "#5fff5f"
batteryColor _ p
| p < 5 = "#ff0000"
| p < 10 = "#ffaf00"
| p < 15 = "#ffd700"
| p < 20 = "#ffff00"
| otherwise = ""
batterySymbol :: BatteryState -> Int -> Text
batterySymbol BatLoading _ = "ac_01"
batterySymbol _ p
| p < 50 = "bat_low_01"
| p < 20 = "bat_empty_01"
| otherwise = "bat_full_01"
instance PollModule BatteryH where
getOutput (BH bh) = do
p <- getCurrentLevel bh
s <- getTimeLeft bh
online <- getCurrentStatus bh
pow <- getLoading bh
let h = s `div` 3600
m = (s `mod` 3600) `div` 60
return
[ batteryImage (batterySymbol online p)
, MonkyColor (batteryColor online p, "") $
MonkyPlain $ sformat ((left 4 ' ' %. fixed 1) % "W " % int % "% " % (left 2 ' ' %. int) % ":" % (left 2 '0' %. int)) pow p h m
]
-- |The handle type for this module
newtype BatteryH = BH BatteryHandle
-- |Create a 'BatteryHandle'
getBatteryHandle :: String -- ^The name of the wall socket adapter used by the battery
-> String -- ^The name of the battery
-> IO BatteryH
getBatteryHandle = fmap BH .: B.getBatteryHandle
-- |Version of 'getBatteryHandle' that defaults to "BAT0"
getBatteryHandle' :: String -> IO BatteryH
getBatteryHandle' = fmap BH . B.getBatteryHandle'