113 lines
3.0 KiB
Haskell
113 lines
3.0 KiB
Haskell
--------------------------------------------------------------------------------
|
|
-- | DBus module for Intel Backlight control
|
|
|
|
module XMonad.Internal.DBus.Brightness.IntelBacklight
|
|
( callGetBrightnessIB
|
|
, matchSignalIB
|
|
, exportIntelBacklight
|
|
, intelBacklightControls
|
|
, intelBacklightSignalDep
|
|
, blPath
|
|
) where
|
|
|
|
import Data.Int (Int32)
|
|
|
|
import DBus
|
|
import DBus.Client
|
|
|
|
import System.FilePath.Posix
|
|
|
|
import XMonad.Internal.DBus.Brightness.Common
|
|
import XMonad.Internal.Dependency
|
|
import XMonad.Internal.IO
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- | Low level sysfs functions
|
|
--
|
|
type Brightness = Float
|
|
|
|
type RawBrightness = Int32
|
|
|
|
type RawBounds = (RawBrightness, RawBrightness)
|
|
|
|
steps :: Int
|
|
steps = 16
|
|
|
|
minRawBrightness :: RawBrightness
|
|
minRawBrightness = 1
|
|
|
|
backlightDir :: FilePath
|
|
backlightDir = "/sys/class/backlight/intel_backlight/"
|
|
|
|
maxFile :: FilePath
|
|
maxFile = backlightDir </> "max_brightness"
|
|
|
|
curFile :: FilePath
|
|
curFile = backlightDir </> "brightness"
|
|
|
|
getMaxRawBrightness :: IO RawBrightness
|
|
getMaxRawBrightness = readInt maxFile
|
|
|
|
getBrightness :: RawBounds -> IO Brightness
|
|
getBrightness bounds = readPercent bounds curFile
|
|
|
|
minBrightness :: RawBounds -> IO Brightness
|
|
minBrightness bounds = writePercentMin bounds curFile
|
|
|
|
maxBrightness :: RawBounds -> IO Brightness
|
|
maxBrightness bounds = writePercentMax bounds curFile
|
|
|
|
incBrightness :: RawBounds -> IO Brightness
|
|
incBrightness = incPercent steps curFile
|
|
|
|
decBrightness :: RawBounds -> IO Brightness
|
|
decBrightness = decPercent steps curFile
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- | DBus interface
|
|
|
|
blPath :: ObjectPath
|
|
blPath = objectPath_ "/intelbacklight"
|
|
|
|
interface :: InterfaceName
|
|
interface = interfaceName_ "org.xmonad.Brightness"
|
|
|
|
intelBacklightConfig :: BrightnessConfig RawBrightness Brightness
|
|
intelBacklightConfig = BrightnessConfig
|
|
{ bcMin = minBrightness
|
|
, bcMax = maxBrightness
|
|
, bcInc = incBrightness
|
|
, bcDec = decBrightness
|
|
, bcGet = getBrightness
|
|
, bcGetMax = getMaxRawBrightness
|
|
, bcMinRaw = minRawBrightness
|
|
, bcPath = blPath
|
|
, bcInterface = interface
|
|
, bcName = "Intel backlight"
|
|
}
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- | Exported haskell API
|
|
|
|
curFileDep :: FullDep Dependency
|
|
curFileDep = pathRW curFile
|
|
|
|
maxFileDep :: FullDep Dependency
|
|
maxFileDep = pathR maxFile
|
|
|
|
intelBacklightSignalDep :: DBusDep
|
|
intelBacklightSignalDep = signalDep intelBacklightConfig
|
|
|
|
exportIntelBacklight :: Maybe Client -> FeatureIO
|
|
exportIntelBacklight =
|
|
brightnessExporter [curFileDep, maxFileDep] intelBacklightConfig
|
|
|
|
intelBacklightControls :: Maybe Client -> BrightnessControls
|
|
intelBacklightControls = brightnessControls intelBacklightConfig
|
|
|
|
callGetBrightnessIB :: Client -> IO (Maybe Brightness)
|
|
callGetBrightnessIB = callGetBrightness intelBacklightConfig
|
|
|
|
matchSignalIB :: (Maybe Brightness -> IO ()) -> Client -> IO ()
|
|
matchSignalIB = matchSignal intelBacklightConfig
|