sway/include/commands.h
2015-09-08 10:53:15 -07:00

23 lines
401 B
C

#ifndef _SWAY_COMMANDS_H
#define _SWAY_COMMANDS_H
#include <stdbool.h>
#include "config.h"
struct cmd_handler {
char *command;
bool (*handle)(int argc, char **argv);
enum {
CMD_COMPOSITOR_READY,
CMD_KEYBIND,
CMD_ANYTIME
} config_type;
};
bool handle_command(char *command);
// Handles commands during config
bool config_command(char *command);
void remove_view_from_scratchpad();
#endif