remove txtwin struct; only one txtwin is used at any time
[cnoor.git] / config.h
blob2d3404426216fa9858cab37d54541d8c4f51f146
1 /* cnoor config file */
3 /* you can get it from http://tanzil.info/download */
4 #define QURAN_PATH "/path/to/quran.txt"
5 /* it should be a utf-8 file with one aya per line or NULL */
6 #define TRANS_PATH "/path/to/translation.txt"
8 /* fonts and colors */
9 struct style {
10 char *name;
11 char *font;
12 char *fg;
13 char *bg;
14 } styles[] = {
15 {"quran", "me_quran 18", "#000000", "#DDDDFF"},
16 {"trans", "DejaVu Sans 8", "#444455", "#FFFFFF"},
17 {"num", "DejaVu Sans Mono 7", "#225599", "#FFFFFF"},
18 {"juz", "DejaVu Sans Mono 7", "#229955", "#FFFFFF"},
19 {"sajda", "DejaVu Sans Mono 7", "#992222", "#FFFFFF"},