Make hide_on_modifier configurable

This commit is contained in:
Axel Wagner
2010-08-26 00:02:35 +02:00
parent 386abde4df
commit c4c918cb06
4 changed files with 61 additions and 33 deletions

10
i3bar/include/config.h Normal file
View File

@ -0,0 +1,10 @@
#ifndef CONFIG_H_
#define CONFIL_H_
typedef struct config_t {
int hide_on_modifier;
} config_t;
config_t config;
#endif