awesome/lib/awful/dbus.lua
Emmanuel Lepage Vallée 8935ed2a30 Remove traces of the old URL (#1280)
**WARNING**: This breaks the API
2016-12-21 02:03:03 +01:00

19 lines
611 B
Lua

---------------------------------------------------------------------------
--- D-Bus module for awful.
--
-- This module simply request the org.awesomewm.awful name on the D-Bus
-- for futur usage by other awful modules.
--
-- @author Julien Danjou <julien@danjou.info>
-- @copyright 2009 Julien Danjou
-- @module awful.dbus
---------------------------------------------------------------------------
-- Grab environment we need
local dbus = dbus
if dbus then
dbus.request_name("session", "org.awesomewm.awful")
end
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80