1 #include "openbox/actions.h"
2 #include "openbox/event.h"
3 #include "openbox/startupnotify.h"
4 #include "openbox/screen.h"
15 static gpointer
setup_func(ObParseInst
*i
, xmlDocPtr doc
, xmlNodePtr node
);
16 static void free_func(gpointer options
);
17 static gboolean
run_func(ObActionsData
*data
, gpointer options
);
19 static gboolean i_input_func(guint initial_state,
23 static void i_cancel_func(gpointer options);
26 void action_execute_startup(void)
28 actions_register("Execute",
35 static gpointer
setup_func(ObParseInst
*i
, xmlDocPtr doc
, xmlNodePtr node
)
40 o
= g_new0(Options
, 1);
42 if ((n
= parse_find_node("command", node
)) ||
43 (n
= parse_find_node("execute", node
)))
45 gchar
*s
= parse_string(doc
, n
);
46 o
->cmd
= parse_expand_tilde(s
);
50 if ((n
= parse_find_node("startupnotify", node
))) {
52 if ((m
= parse_find_node("enabled", n
->xmlChildrenNode
)))
53 o
->sn
= parse_bool(doc
, m
);
54 if ((m
= parse_find_node("name", n
->xmlChildrenNode
)))
55 o
->sn_name
= parse_string(doc
, m
);
56 if ((m
= parse_find_node("icon", n
->xmlChildrenNode
)))
57 o
->sn_icon
= parse_string(doc
, m
);
58 if ((m
= parse_find_node("wmclass", n
->xmlChildrenNode
)))
59 o
->sn_wmclass
= parse_string(doc
, m
);
64 static void free_func(gpointer options
)
72 g_free(o
->sn_wmclass
);
77 /* Always return FALSE because its not interactive */
78 static gboolean
run_func(ObActionsData
*data
, gpointer options
)
85 if (!o
->cmd
) return FALSE
;
86 cmd
= g_filename_from_utf8(o
->cmd
, -1, NULL
, NULL
, NULL
);
88 g_message(_("Failed to convert the path '%s' from utf8"), o
->cmd
);
92 /* If there is a keyboard grab going on then we need to cancel
93 it so the application can grab things */
94 event_cancel_all_key_grabs();
96 if (!g_shell_parse_argv(cmd
, NULL
, &argv
, &e
)) {
97 g_message(_("Failed to execute '%s': %s"), o
->cmd
, e
->message
);
101 gchar
*program
= NULL
;
104 program
= g_path_get_basename(argv
[0]);
105 /* sets up the environment */
106 sn_setup_spawn_environment(program
, o
->sn_name
, o
->sn_icon
,
107 /* launch it on the current desktop */
111 if (!g_spawn_async(NULL
, argv
, NULL
,
112 G_SPAWN_SEARCH_PATH
| G_SPAWN_DO_NOT_REAP_CHILD
,
113 NULL
, NULL
, NULL
, &e
))
115 g_message(_("Failed to execute '%s': %s"), o
->cmd
, e
->message
);
122 unsetenv("DESKTOP_STARTUP_ID");