swappy/include/config.h
Jeremy Attali fae0aeacab feat(tool): introduce blurring capability
The blur algorithm is largely inspired from Kristian Høgsberg & Chris
Wilson in [this file](https://www.cairographics.org/cookbook/blur.c/)

Closes #17
2020-05-31 23:25:37 -04:00

9 lines
268 B
C

#include "swappy.h"
#define CONFIG_BLUR_RADIUS_DEFAULT 15
#define CONFIG_LINE_SIZE_DEFAULT 5
#define CONFIG_TEXT_FONT_DEFAULT "sans-serif"
#define CONFIG_TEXT_SIZE_DEFAULT 20
void config_load(struct swappy_state *state);
void config_free(struct swappy_state *state);