1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
-----------------------------------------------------------------------------
---- |
---- Module : Plugins.Monitors.Birght
---- Copyright : (c) Martin Perner
---- License : BSD-style (see LICENSE)
----
---- Maintainer : Martin Perner <martin@perner.cc>
---- Stability : unstable
---- Portability : unportable
----
---- A screen brightness monitor for Xmobar
----
-------------------------------------------------------------------------------
module Xmobar.Plugins.Monitors.Bright (brightConfig, runBright) where
import Control.Exception (SomeException, handle)
import qualified Data.ByteString.Lazy.Char8 as B
import System.FilePath ((</>))
import System.Posix.Files (fileExist)
import System.Console.GetOpt
import Xmobar.Plugins.Monitors.Common
data BrightOpts = BrightOpts { subDir :: String
, currBright :: String
, maxBright :: String
, curBrightIconPattern :: Maybe IconPattern
}
defaultOpts :: BrightOpts
defaultOpts = BrightOpts { subDir = "acpi_video0"
, currBright = "actual_brightness"
, maxBright = "max_brightness"
, curBrightIconPattern = Nothing
}
options :: [OptDescr (BrightOpts -> BrightOpts)]
options = [ Option "D" ["device"] (ReqArg (\x o -> o { subDir = x }) "") ""
, Option "C" ["curr"] (ReqArg (\x o -> o { currBright = x }) "") ""
, Option "M" ["max"] (ReqArg (\x o -> o { maxBright = x }) "") ""
, Option "" ["brightness-icon-pattern"] (ReqArg (\x o ->
o { curBrightIconPattern = Just $ parseIconPattern x }) "") ""
]
sysDir :: FilePath
sysDir = "/sys/class/backlight/"
brightConfig :: IO MConfig
brightConfig = mkMConfig "<percent>" -- template
["vbar", "percent", "bar", "ipat"] -- replacements
data Files = Files { fCurr :: String
, fMax :: String
}
| NoFiles
brightFiles :: BrightOpts -> IO Files
brightFiles opts = do
is_curr <- fileExist $ fCurr files
is_max <- fileExist $ fCurr files
return (if is_curr && is_max then files else NoFiles)
where prefix = sysDir </> subDir opts
files = Files { fCurr = prefix </> currBright opts
, fMax = prefix </> maxBright opts
}
runBright :: [String] -> Monitor String
runBright args = do
opts <- io $ parseOptsWith options defaultOpts args
f <- io $ brightFiles opts
c <- io $ readBright f
case f of
NoFiles -> return "hurz"
_ -> fmtPercent opts c >>= parseTemplate
where fmtPercent :: BrightOpts -> Float -> Monitor [String]
fmtPercent opts c = do r <- showVerticalBar (100 * c) c
s <- showPercentWithColors c
t <- showPercentBar (100 * c) c
d <- showIconPattern (curBrightIconPattern opts) c
return [r,s,t,d]
readBright :: Files -> IO Float
readBright NoFiles = return 0
readBright files = do
currVal<- grab $ fCurr files
maxVal <- grab $ fMax files
return (currVal / maxVal)
where grab f = handle handler (read . B.unpack <$> B.readFile f)
handler = const (return 0) :: SomeException -> IO Float
|