terminology/src/bin/config.h

23 lines
454 B
C
Raw Normal View History

typedef struct _Config Config;
struct _Config
{
struct {
const char *name;
int size;
unsigned char bitmap;
} font;
int scrollback;
const char *theme;
const char *background;
unsigned char jump_on_change;
unsigned char translucent;
const char *wordsep;
};
extern Config *config;
void config_init(void);
void config_shutdown(void);
void config_save(void);