summaryrefslogtreecommitdiff
path: root/openbox/action.c
diff options
context:
space:
mode:
Diffstat (limited to 'openbox/action.c')
-rw-r--r--openbox/action.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/openbox/action.c b/openbox/action.c
index 6e750d6f..00e87b24 100644
--- a/openbox/action.c
+++ b/openbox/action.c
@@ -705,6 +705,11 @@ ActionString actionstrings[] =
NULL
},
{
+ "flash",
+ action_flash,
+ NULL
+ },
+ {
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);
+}