Implement autostart using "exec" in config

Syntax is "exec <application>", like when creating a binding.
Multiple entries are possible, applications are started in
the specified order.
This commit is contained in:
Michael Rudolf
2009-03-29 14:53:48 +02:00
committed by Michael Stapelberg
parent 4a3354da3b
commit 3400f0e6bd
4 changed files with 31 additions and 0 deletions

View File

@ -25,6 +25,7 @@
extern char **start_argv;
extern Display *xkbdpy;
extern TAILQ_HEAD(bindings_head, Binding) bindings;
extern TAILQ_HEAD(autostarts_head, Autostart) autostarts;
extern SLIST_HEAD(stack_wins_head, Stack_Window) stack_wins;
extern xcb_event_handlers_t evenths;
extern int num_screens;