33 lines
747 B
Haskell
33 lines
747 B
Haskell
--------------------------------------------------------------------------------
|
|
-- High-level interface for managing XMonad's DBus
|
|
|
|
module XMonad.Internal.DBus.Common
|
|
( xmonadSesBusName
|
|
, xmonadSysBusName
|
|
, btBus
|
|
, notifyBus
|
|
, notifyPath
|
|
, networkManagerBus
|
|
)
|
|
where
|
|
|
|
import DBus
|
|
|
|
xmonadSesBusName :: BusName
|
|
xmonadSesBusName = busName_ "org.xmonad.session"
|
|
|
|
xmonadSysBusName :: BusName
|
|
xmonadSysBusName = busName_ "org.xmonad.system"
|
|
|
|
btBus :: BusName
|
|
btBus = busName_ "org.bluez"
|
|
|
|
notifyBus :: BusName
|
|
notifyBus = busName_ "org.freedesktop.Notifications"
|
|
|
|
notifyPath :: ObjectPath
|
|
notifyPath = objectPath_ "/org/freedesktop/Notifications"
|
|
|
|
networkManagerBus :: BusName
|
|
networkManagerBus = busName_ "org.freedesktop.NetworkManager"
|