awful: split D-Bus name from awesome

awful uses its own namespace in D-Bus

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2009-06-15 20:52:40 +02:00
parent 88be323e4a
commit cbff5fe9dd
3 changed files with 22 additions and 5 deletions

17
lib/awful/dbus.lua.in Normal file
View file

@ -0,0 +1,17 @@
---------------------------------------------------------------------------
-- @author Julien Danjou &lt;julien@danjou.info&gt;
-- @copyright 2009 Julien Danjou
-- @release @AWESOME_VERSION@
---------------------------------------------------------------------------
-- Grab environment we need
local dbus = dbus
--- D-Bus module for awful
module("awful.dbus")
if dbus then
dbus.request_name("session", "org.naquadah.awesome.awful")
end
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80

View file

@ -5,6 +5,7 @@
---------------------------------------------------------------------------
-- Grab environment we need
require("awful.dbus")
local hooks = require("awful.hooks")
local loadstring = loadstring
local tostring = tostring
@ -17,9 +18,8 @@ local type = type
--- Remote control module for awful
module("awful.remote")
if hooks.dbus then
dbus.request_name("session", "org.naquadah.awesome")
hooks.dbus.register("org.naquadah.awesome.Remote", function(data, code)
if dbus then
hooks.dbus.register("org.naquadah.awesome.awful.Remote", function(data, code)
if data.member == "Eval" then
local f, e = loadstring(code)
if f then

View file

@ -31,9 +31,9 @@ then
exit 1
fi
DBUS_METHOD=org.naquadah.awesome.Remote.Eval
DBUS_PATH=/
DBUS_DEST=org.naquadah.awesome
DBUS_DEST=org.naquadah.awesome.awful
DBUS_METHOD=${DBUS_DEST}.Remote.Eval
a_dbus_send()
{