diff options
| author | Tristan Riehs <tristan.riehs@inria.fr> | 2026-07-16 14:17:40 +0200 |
|---|---|---|
| committer | Tristan Riehs <tristan.riehs@inria.fr> | 2026-07-16 14:17:40 +0200 |
| commit | 920c4bb99e9d8149e0f8f6cec8c3bfa5eb4641aa (patch) | |
| tree | 8d6d4a6e6cdff38e2a6913e18c344b8f9b89d0da /src | |
| parent | 16dad1a5ad3a56af41f7a5f9342a245db24d2bd9 (diff) | |
Fix config file path with XDG_CONFIG_HOME
Diffstat (limited to 'src')
| -rw-r--r-- | src/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config.c b/src/config.c index 0352541..30a465e 100644 --- a/src/config.c +++ b/src/config.c @@ -58,7 +58,7 @@ void ftag_config_init(const char *opt_config_file) } else if (env_xdg_config_home) { strbuild(config_file, - "%s/.config/ftag/ftag.conf", env_xdg_config_home); + "%s/ftag/ftag.conf", env_xdg_config_home); } else { assert(env_home); |
