xmonad-config/lib/DBus/Common.hs

28 lines
671 B
Haskell
Raw Normal View History

2020-03-20 00:51:36 -04:00
{-# LANGUAGE OverloadedStrings #-}
module DBus.Common where
import DBus.IntelBacklight
2020-03-20 00:51:36 -04:00
import DBus.Client
startXMonadService :: IO Client
startXMonadService = do
client <- connectSession
requestResult <- requestName client "org.xmonad" []
-- TODO if the client is not released on shutdown the owner will be
-- different
if requestResult /= NamePrimaryOwner then
putStrLn "Another service owns \"org.xmonad\""
else do
putStrLn "Started xmonad dbus client"
exportIntelBacklight client
2020-03-20 00:51:36 -04:00
return client
stopXMonadService :: Client -> IO ()
stopXMonadService client = do
reply <- releaseName client "org.xmonad"
disconnect client
return ()