summaryrefslogtreecommitdiff
path: root/openbox/action.h
diff options
context:
space:
mode:
authorMikael Magnusson <mikachu@comhem.se>2007-03-11 15:41:47 +0000
committerMikael Magnusson <mikachu@comhem.se>2007-03-11 15:41:47 +0000
commitc5d2a9bc98fb7d1ed85c69fc3007ab36b9fd96d5 (patch)
tree27531a3b9b26adda3e1853ca8b8f62d88a1b76b6 /openbox/action.h
parent923e0edfa80dbfe7e9fa90bee8f6bb2dfb2f9907 (diff)
allow setting startupnotify per execute action, default to disabled. use like this: <action name="execute"><execute>program</execute><startupnotify><enabled>true</enabled><name>something descriptive</name><icon>name of an icon in the icon theme to show</icon></startupnotify</action>
Diffstat (limited to 'openbox/action.h')
-rw-r--r--openbox/action.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/openbox/action.h b/openbox/action.h
index 639db018..c8e91cfa 100644
--- a/openbox/action.h
+++ b/openbox/action.h
@@ -72,6 +72,9 @@ struct DirectionalAction{
struct Execute {
struct AnyAction any;
gchar *path;
+ gboolean startupnotify;
+ gchar *name;
+ gchar *icon_name;
};
struct ClientAction {