diff options
author | Brian Ashworth <[email protected]> | 2018-10-09 08:12:02 -0400 |
---|---|---|
committer | Brian Ashworth <[email protected]> | 2018-10-09 08:12:46 -0400 |
commit | d3f0e52784712696c7174d3adf8ec6cf3ac31b19 (patch) | |
tree | 313ca9e6eb03e9f5971d3fde90ace73b613ca9e4 /swaybar/ipc.c | |
parent | 1c969e86f50065985ddf35b7fef62c14aa7688a5 (diff) |
bar-bindsym: address ianyfan's comments
Diffstat (limited to 'swaybar/ipc.c')
-rw-r--r-- | swaybar/ipc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/swaybar/ipc.c b/swaybar/ipc.c index 70086a36..a67814c1 100644 --- a/swaybar/ipc.c +++ b/swaybar/ipc.c @@ -338,6 +338,8 @@ static void ipc_get_outputs(struct swaybar *bar) { } void ipc_execute_binding(struct swaybar *bar, struct swaybar_binding *bind) { + wlr_log(WLR_DEBUG, "Executing binding for button %u (release=%d): `%s`", + bind->button, bind->release, bind->command); uint32_t len = strlen(bind->command); free(ipc_single_command(bar->ipc_socketfd, IPC_COMMAND, bind->command, &len)); |