mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
* Look for configuration file in (in this order): - XDG_CONFIG_HOME/footrc - ~/.config/footrc * Currently supports setting the font
8 lines
121 B
C
8 lines
121 B
C
#pragma once
|
|
|
|
struct config {
|
|
char *font;
|
|
};
|
|
|
|
struct config config_load(void);
|
|
void config_free(struct config conf);
|