client: export skip_taskbar
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
7984b22f7a
commit
5c8a4dee4a
7
client.c
7
client.c
|
@ -1325,6 +1325,7 @@ luaA_client_newindex(lua_State *L)
|
|||
* \return The number of elements pushed on stack.
|
||||
* \luastack
|
||||
* \lfield name The client title.
|
||||
* \lfield skip_taskbar True if the client does not want to be in taskbar.
|
||||
* \lfield type The window type (desktop, normal, dock, …).
|
||||
* \lfield class The client class.
|
||||
* \lfield instance The client instance.
|
||||
|
@ -1333,8 +1334,7 @@ luaA_client_newindex(lua_State *L)
|
|||
* \lfield machine The machine client is running on.
|
||||
* \lfield icon_name The client name when iconified.
|
||||
* \lfield screen Client screen number.
|
||||
* \lfield hide Define if the client must be hidden, i.e. never mapped, not
|
||||
* visible in taskbar.
|
||||
* \lfield hide Define if the client must be hidden, i.e. never mapped,
|
||||
* invisible in taskbar.
|
||||
* \lfield minimize Define it the client must be iconify, i.e. only visible in
|
||||
* taskbar.
|
||||
|
@ -1375,6 +1375,9 @@ luaA_client_index(lua_State *L)
|
|||
case A_TK_NAME:
|
||||
lua_pushstring(L, (*c)->name);
|
||||
break;
|
||||
case A_TK_SKIP_TASKBAR:
|
||||
lua_pushboolean(L, (*c)->skiptb);
|
||||
break;
|
||||
case A_TK_TYPE:
|
||||
switch((*c)->type)
|
||||
{
|
||||
|
|
|
@ -72,6 +72,7 @@ shadow_offset
|
|||
Shift
|
||||
show_icons
|
||||
sizehints
|
||||
skip_taskbar
|
||||
south
|
||||
sticky
|
||||
text
|
||||
|
|
Loading…
Reference in New Issue