xmonad-config/lib/Xmobar/Plugins/BacklightCommon.hs

27 lines
789 B
Haskell
Raw Normal View History

{-# LANGUAGE OverloadedStrings #-}
2022-12-30 14:58:23 -05:00
-- Common backlight plugin bits
2021-11-23 18:28:38 -05:00
--
-- Use the custom DBus interface exported by the XMonad process so I can react
-- to signals spawned by commands
module Xmobar.Plugins.BacklightCommon (startBacklight) where
2022-12-30 14:58:23 -05:00
import Data.Internal.DBus
import qualified RIO.Text as T
import Xmobar.Plugins.Common
2021-11-23 18:28:38 -05:00
2022-12-30 14:58:23 -05:00
startBacklight
:: RealFrac a
=> ((Maybe a -> IO ()) -> SesClient -> IO ())
-> (SesClient -> IO (Maybe a))
-> T.Text
-> Callback
-> IO ()
2021-11-23 18:28:38 -05:00
startBacklight matchSignal callGetBrightness icon cb = do
2022-12-30 14:58:23 -05:00
withDBusClientConnection cb $ \c -> do
matchSignal display c
display =<< callGetBrightness c
where
formatBrightness b = return $ T.concat [icon, T.pack $ show (round b :: Integer), "%"]
display = displayMaybe cb formatBrightness