mirror of
https://github.com/swaywm/sway.git
synced 2025-11-01 22:58:41 -04:00
rename config apply cmds
This commit is contained in:
parent
f4a5a0ead4
commit
f16aa3c0ad
20 changed files with 37 additions and 22 deletions
|
|
@ -42,9 +42,6 @@ enum expected_args {
|
|||
EXPECTED_EQUAL_TO
|
||||
};
|
||||
|
||||
void input_cmd_apply(struct input_config *input);
|
||||
void seat_cmd_apply(struct seat_config *seat);
|
||||
|
||||
struct cmd_results *checkarg(int argc, const char *name,
|
||||
enum expected_args type, int val);
|
||||
|
||||
|
|
|
|||
|
|
@ -384,6 +384,7 @@ int input_identifier_cmp(const void *item, const void *data);
|
|||
struct input_config *new_input_config(const char* identifier);
|
||||
void merge_input_config(struct input_config *dst, struct input_config *src);
|
||||
void free_input_config(struct input_config *ic);
|
||||
void apply_input_config(struct input_config *input);
|
||||
|
||||
int seat_name_cmp(const void *item, const void *data);
|
||||
struct seat_config *new_seat_config(const char* name);
|
||||
|
|
@ -392,6 +393,7 @@ void free_seat_config(struct seat_config *ic);
|
|||
struct seat_attachment_config *seat_attachment_config_new();
|
||||
struct seat_attachment_config *seat_config_get_attachment(
|
||||
struct seat_config *seat_config, char *identifier);
|
||||
void apply_seat_config(struct seat_config *seat);
|
||||
|
||||
int output_name_cmp(const void *item, const void *data);
|
||||
struct output_config *new_output_config();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue