1 #include "openbox/actions.h"
2 #include "openbox/event.h"
3 #include "openbox/startupnotify.h"
4 #include "openbox/screen.h"
19 static gpointer
setup_func(ObParseInst
*i
, xmlDocPtr doc
, xmlNodePtr node
);
20 static void free_func(gpointer options
);
21 static gboolean
run_func(ObActionsData
*data
, gpointer options
);
23 static gboolean i_input_func(guint initial_state,
27 static void i_cancel_func(gpointer options);
30 void action_execute_startup(void)
32 actions_register("Execute",
39 static gpointer
setup_func(ObParseInst
*i
, xmlDocPtr doc
, xmlNodePtr node
)
44 o
= g_new0(Options
, 1);
46 if ((n
= parse_find_node("command", node
)) ||
47 (n
= parse_find_node("execute", node
)))
49 gchar
*s
= parse_string(doc
, n
);
50 o
->cmd
= parse_expand_tilde(s
);
54 if ((n
= parse_find_node("startupnotify", node
))) {
56 if ((m
= parse_find_node("enabled", n
->xmlChildrenNode
)))
57 o
->sn
= parse_bool(doc
, m
);
58 if ((m
= parse_find_node("name", n
->xmlChildrenNode
)))
59 o
->sn_name
= parse_string(doc
, m
);
60 if ((m
= parse_find_node("icon", n
->xmlChildrenNode
)))
61 o
->sn_icon
= parse_string(doc
, m
);
62 if ((m
= parse_find_node("wmclass", n
->xmlChildrenNode
)))
63 o
->sn_wmclass
= parse_string(doc
, m
);
68 static void free_func(gpointer options
)
76 g_free(o
->sn_wmclass
);
81 /* Always return FALSE because its not interactive */
82 static gboolean
run_func(ObActionsData
*data
, gpointer options
)
89 if (!o
->cmd
) return FALSE
;
90 cmd
= g_filename_from_utf8(o
->cmd
, -1, NULL
, NULL
, NULL
);
92 g_message(_("Failed to convert the path \"%s\" from utf8"), o
->cmd
);
96 /* If there is a keyboard grab going on then we need to cancel
97 it so the application can grab things */
98 event_cancel_all_key_grabs();
100 if (!g_shell_parse_argv(cmd
, NULL
, &argv
, &e
)) {
101 g_message(_("Failed to execute \"%s\": %s"), o
->cmd
, e
->message
);
105 gchar
*program
= NULL
;
108 program
= g_path_get_basename(argv
[0]);
109 /* sets up the environment */
110 sn_setup_spawn_environment(program
, o
->sn_name
, o
->sn_icon
,
112 /* launch it on the current desktop */
116 if (!g_spawn_async(NULL
, argv
, NULL
,
117 G_SPAWN_SEARCH_PATH
| G_SPAWN_DO_NOT_REAP_CHILD
,
118 NULL
, NULL
, NULL
, &e
))
120 g_message(_("Failed to execute \"%s\": %s"), o
->cmd
, e
->message
);
127 unsetenv("DESKTOP_STARTUP_ID");