patch to allow exec_always in configure file
fixed indentation, updated docs
This commit is contained in:
committed by
Michael Stapelberg
parent
5555c0fd3b
commit
cc24a96e96
@ -174,13 +174,17 @@ struct Binding {
|
||||
};
|
||||
|
||||
/**
|
||||
* Holds a command specified by an exec-line in the config (see src/config.c)
|
||||
* Holds a command specified by either an:
|
||||
* - exec-line
|
||||
* - exec_always-line
|
||||
* in the config (see src/config.c)
|
||||
*
|
||||
*/
|
||||
struct Autostart {
|
||||
/** Command, like in command mode */
|
||||
char *command;
|
||||
TAILQ_ENTRY(Autostart) autostarts;
|
||||
TAILQ_ENTRY(Autostart) autostarts_always;
|
||||
};
|
||||
|
||||
/**
|
||||
|
@ -26,6 +26,7 @@ extern Display *xlibdpy, *xkbdpy;
|
||||
extern int xkb_current_group;
|
||||
extern TAILQ_HEAD(bindings_head, Binding) *bindings;
|
||||
extern TAILQ_HEAD(autostarts_head, Autostart) autostarts;
|
||||
extern TAILQ_HEAD(autostarts_always_head, Autostart) autostarts_always;
|
||||
extern TAILQ_HEAD(ws_assignments_head, Workspace_Assignment) ws_assignments;
|
||||
extern TAILQ_HEAD(assignments_head, Assignment) assignments;
|
||||
extern SLIST_HEAD(stack_wins_head, Stack_Window) stack_wins;
|
||||
|
Reference in New Issue
Block a user