From 1b0a66dcfff539fe973280f94d4e97f4591c64f8 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Mon, 1 Sep 2003 02:57:53 +0000 Subject: [PATCH] add flash action --- openbox/action.c | 11 +++++++++++ openbox/action.h | 2 ++ 2 files changed, 13 insertions(+) diff --git a/openbox/action.c b/openbox/action.c index 6e750d6f..00e87b24 100644 --- a/openbox/action.c +++ b/openbox/action.c @@ -704,6 +704,11 @@ ActionString actionstrings[] = action_vibrate, NULL }, + { + "flash", + action_flash, + NULL + }, { NULL, NULL, @@ -1268,3 +1273,9 @@ void action_vibrate(union ActionData *data) } } } + +void action_flash(union ActionData *data) +{ + if (!data->client.any.c) return; + frame_flash(data->client.any.c->frame); +} diff --git a/openbox/action.h b/openbox/action.h index db618b36..116bddc0 100644 --- a/openbox/action.h +++ b/openbox/action.h @@ -246,5 +246,7 @@ void action_show_desktop(union ActionData *data); void action_unshow_desktop(union ActionData *data); /* Client */ void action_vibrate(union ActionData *data); +/* Client */ +void action_flash(union ActionData *data); #endif -- 2.39.2