sway/include/commands.h
2015-08-29 21:14:13 -05:00

16 lines
310 B
C

#ifndef _SWAY_COMMANDS_H
#define _SWAY_COMMANDS_H
#include <stdbool.h>
#include "config.h"
struct cmd_handler {
char *command;
bool (*handle)(struct sway_config *config, int argc, char **argv);
};
bool handle_command(struct sway_config *config, char *command);
void remove_view_from_scratchpad();
#endif