1
0
Fork 0
mirror of https://github.com/NickHu/sway synced 2025-01-18 22:27:25 +01:00
sway-patched-tray-menu/include/commands.h

22 lines
406 B
C
Raw Normal View History

#ifndef _SWAY_COMMANDS_H
#define _SWAY_COMMANDS_H
#include <stdbool.h>
#include "config.h"
struct cmd_handler {
2015-08-10 21:09:51 +02:00
char *command;
2015-09-10 20:07:40 +02:00
enum cmd_status {
CMD_SUCCESS,
CMD_FAILURE,
CMD_DEFER,
} (*handle)(int argc, char **argv);
};
2015-09-10 20:07:40 +02:00
enum cmd_status handle_command(char *command);
2015-09-08 19:27:09 +02:00
// Handles commands during config
2015-09-10 20:07:40 +02:00
enum cmd_status config_command(char *command);
void remove_view_from_scratchpad();
#endif