From 894f9c54393927c7bd4c58fa1ea4eb53fd03f2bc Mon Sep 17 00:00:00 2001 From: Leon Winter Date: Fri, 19 Dec 2008 09:34:55 +0100 Subject: [PATCH] naughty: fix returning correct awesome version Signed-off-by: Julien Danjou --- lib/naughty.lua.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/naughty.lua.in b/lib/naughty.lua.in index 5ee3f936..785cf757 100644 --- a/lib/naughty.lua.in +++ b/lib/naughty.lua.in @@ -20,6 +20,7 @@ local bt = require("beautiful") local screen = screen local awful = awful local dbus = dbus +local AWESOME_VERSION = AWESOME_VERSION --- Notification library module("naughty") @@ -439,7 +440,7 @@ elseif data.member == "CloseNotification" then end elseif data.member == "GetServerInfo" or data.member == "GetServerInformation" then -- name of notification app, name of project, version of notification app, project version - return "s", "naughty", "s", "awesome", "s", AWESOME_VERSION, "s", "1337" + return "s", "naughty", "s", "awesome", "s", "1337", "s", AWESOME_VERSION end end)