diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-05-16 20:20:33 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-05-16 20:20:33 +0000 |
| commit | f17b225daadb483b8736dc0e57a9def68e770ae9 (patch) | |
| tree | b3c8a161e6aa370753e4f882a83cddc1aac351ad /openbox/client.c | |
| parent | 2efed807b39ec28b036315b3e34991bbb90b92ed (diff) | |
save the dock's class/name for future evil purposes!
also print names of windows being managed/unmanaged
Diffstat (limited to 'openbox/client.c')
| -rw-r--r-- | openbox/client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openbox/client.c b/openbox/client.c index 5f54e640..77bf98fd 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -301,7 +301,7 @@ void client_manage(Window window) dispatch_client(Event_Client_Mapped, self, 0, 0); - g_message("Managed window 0x%lx", window); + g_message("Managed window 0x%lx (%s)", window, self->name); } void client_unmanage_all() @@ -315,7 +315,7 @@ void client_unmanage(Client *self) int j; GSList *it; - g_message("Unmanaging window: %lx", self->window); + g_message("Unmanaging window: %lx (%s)", self->window, self->name); dispatch_client(Event_Client_Destroy, self, 0, 0); g_assert(self != NULL); |
