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

40 lines
1.1 KiB
Haskell
Raw Normal View History

2021-11-21 00:42:40 -05:00
{-# LANGUAGE LambdaCase #-}
--------------------------------------------------------------------------------
-- | Clevo Keyboard plugin
--
-- Use the custom DBus interface exported by the XMonad process so I can react
-- to signals spawned by commands
module Xmobar.Plugins.ClevoKeyboard
( ClevoKeyboard(..)
, ckAlias
) where
2021-11-21 00:42:40 -05:00
import Control.Concurrent
import Control.Monad
2021-11-21 17:54:00 -05:00
import DBus.Client
import Xmobar
2021-11-21 00:42:40 -05:00
import XMonad.Internal.DBus.Brightness.ClevoKeyboard
2021-11-21 17:54:00 -05:00
newtype ClevoKeyboard = ClevoKeyboard String deriving (Read, Show)
ckAlias :: String
ckAlias = "clevokeyboard"
instance Exec ClevoKeyboard where
2021-11-21 00:42:40 -05:00
alias (ClevoKeyboard _) = ckAlias
start (ClevoKeyboard icon) cb = do
_ <- matchSignalCK $ cb . formatBrightness
2021-11-21 17:54:00 -05:00
-- TODO this could fail, and also should try to reuse client objects when
-- possible
cb . formatBrightness =<< callGetBrightnessCK =<< connectSession
2021-11-21 00:42:40 -05:00
forever (threadDelay 5000000)
where
2021-11-21 00:42:40 -05:00
formatBrightness = \case
Just b -> icon ++ show (round b :: Integer) ++ "%"
Nothing -> "N/A"