From 1009d6a99201cd3bdb124bb6db9e9806cf6dc37e Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Tue, 8 Jul 2008 18:34:32 +0200 Subject: [PATCH] client: add support for pid Signed-off-by: Julien Danjou --- client.c | 15 +++++++++++++++ common/tokenize.gperf | 1 + 2 files changed, 16 insertions(+) diff --git a/client.c b/client.c index 014d2542e..6a058f49c 100644 --- a/client.c +++ b/client.c @@ -1244,7 +1244,10 @@ luaA_client_index(lua_State *L) size_t len; client_t **c = luaA_checkudata(L, 1, "client"); const char *buf = luaL_checklstring(L, 2, &len); + void *data; xutil_class_hint_t hint; + xcb_get_property_cookie_t prop_c; + xcb_get_property_reply_t *prop_r = NULL; if(luaA_usemetatable(L, 1, 2)) return 1; @@ -1262,6 +1265,18 @@ luaA_client_index(lua_State *L) return 2; } return 0; + case A_TK_PID: + prop_c = xcb_get_property_unchecked(globalconf.connection, false, (*c)->win, _NET_WM_PID, CARDINAL, 0L, 1L); + prop_r = xcb_get_property_reply(globalconf.connection, prop_c, NULL); + + if(prop_r && prop_r->value_len && (data = xcb_get_property_value(prop_r))) + lua_pushnumber(L, *(uint32_t *)data); + else + { + p_delete(&prop_r); + return 0; + } + break; case A_TK_FLOATING_PLACEMENT: lua_pushstring(L, name_func_rlookup((*c)->floating_placement, FloatingPlacementList)); diff --git a/common/tokenize.gperf b/common/tokenize.gperf index 079197d63..df58ab54e 100644 --- a/common/tokenize.gperf +++ b/common/tokenize.gperf @@ -38,6 +38,7 @@ nmaster name on opacity +pid plot_data_add plot_properties_set position