aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2015-09-04 20:29:28 -0400
committerDrew DeVault <sir@cmpwn.com>2015-09-04 20:29:28 -0400
commitc2cd56c939098d601c9602807f8f54deb9dee2cf (patch)
treeea60cef6ce17693128669c277d6e8b8ca9cb271b /include
parenta693f671070a96f9a17c61aed6d1f95dd7b957de (diff)
parent2ef83664f528b45f8e9b3b0dbd8b8e2e0ec938bf (diff)
downloadsway-c2cd56c939098d601c9602807f8f54deb9dee2cf.tar.xz
Merge pull request #169 from taiyu-len/master
handling of commands during config
Diffstat (limited to 'include')
-rw-r--r--include/commands.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/commands.h b/include/commands.h
index 714d2db0..808e64eb 100644
--- a/include/commands.h
+++ b/include/commands.h
@@ -6,8 +6,14 @@
struct cmd_handler {
char *command;
bool (*handle)(struct sway_config *config, int argc, char **argv);
+ enum {
+ CMD_COMPOSITOR_READY,
+ CMD_KEYBIND,
+ CMD_ANYTIME
+ } config_type;
};
+struct cmd_handler *find_handler(char *line);
bool handle_command(struct sway_config *config, char *command);
void remove_view_from_scratchpad();