]> git.sur5r.net Git - i3/i3/blob - i3bar/include/config.h
Implement disabling the workspace buttons („thx“ sECuRE)
[i3/i3] / i3bar / include / config.h
1 #ifndef CONFIG_H_
2 #define CONFIG_H_
3
4 #include "common.h"
5
6 typedef enum {
7     DOCKPOS_NONE = 0,
8     DOCKPOS_TOP,
9     DOCKPOS_BOT
10 } dockpos_t;
11
12 typedef struct config_t {
13     int          hide_on_modifier;
14     dockpos_t    dockpos;
15     int          verbose;
16     xcb_colors_t *colors;
17     int          disable_ws;
18 } config_t;
19
20 config_t config;
21
22 #endif