diff options
Diffstat (limited to 'twin/compton-tde/dbus.c')
-rw-r--r-- | twin/compton-tde/dbus.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/twin/compton-tde/dbus.c b/twin/compton-tde/dbus.c index 8aec9ea82..874f565ca 100644 --- a/twin/compton-tde/dbus.c +++ b/twin/compton-tde/dbus.c @@ -901,6 +901,11 @@ cdbus_process_opts_get(session_t *ps, DBusMessage *msg) { cdbus_m_opts_get_do(fork_after_register, cdbus_reply_bool); cdbus_m_opts_get_do(detect_rounded_corners, cdbus_reply_bool); cdbus_m_opts_get_do(paint_on_overlay, cdbus_reply_bool); + // paint_on_overlay_id: Get ID of the X composite overlay window + if (!strcmp("paint_on_overlay_id", target)) { + cdbus_reply_uint32(ps, msg, ps->overlay); + return true; + } cdbus_m_opts_get_do(unredir_if_possible, cdbus_reply_bool); cdbus_m_opts_get_do(unredir_if_possible_delay, cdbus_reply_int32); cdbus_m_opts_get_do(redirected_force, cdbus_reply_enum); |