]> git.sur5r.net Git - i3/i3/blob - include/commands.h
a2701924b87d06cc5a48b8ef7be23b9d58667f55
[i3/i3] / include / commands.h
1 /*
2  * vim:ts=8:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  *
6  * (c) 2009 Michael Stapelberg and contributors
7  *
8  * See file LICENSE for license information.
9  *
10  */
11 #include <xcb/xcb.h>
12
13 #ifndef _COMMANDS_H
14 #define _COMMANDS_H
15
16 bool focus_window_in_container(xcb_connection_t *conn, Container *container, direction_t direction);
17 void show_workspace(xcb_connection_t *conn, int workspace);
18 void parse_command(xcb_connection_t *conn, const char *command);
19
20 #endif