From e9611ce3a6c8e1d7f53bf5fe6102bf6def0d31e0 Mon Sep 17 00:00:00 2001 From: Quentin Hibon Date: Sun, 29 Jul 2018 10:30:22 +0200 Subject: Use a path instead of a file for -C option Allows to specify a configuration directory containing: * conf * keys * hooks When used in combination with -D $ddir, $ddir contains all the other files not mentioned above. Signed-off-by: Lukas Fleischer --- src/args.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/args.c') diff --git a/src/args.c b/src/args.c index f920b8f..bd4fb73 100644 --- a/src/args.c +++ b/src/args.c @@ -83,7 +83,7 @@ enum { static void usage(void) { printf("%s\n", _("usage: calcurse [--daemon|-F|-G|-g|-i|-Q|--status|-x[]]\n" - " [-c] [-C] [-h] [-q] [--read-only] [-v]\n" + " [-c] [-C] [-D] [-h] [-q] [--read-only] [-v]\n" " [--filter-*] [--format-*]")); } @@ -120,7 +120,7 @@ static void help_arg(void) putchar('\n'); printf("%s\n", _("Miscellaneous:")); printf("%s\n", _(" -c, --calendar Specify the calendar data file to use")); - printf("%s\n", _(" -C, --conf Specify the configuration file to use")); + printf("%s\n", _(" -C, --conf Specify the configuration path to use")); printf("%s\n", _(" --daemon Run notification daemon in the background")); printf("%s\n", _(" -D, --directory Specify the data directory to use")); printf("%s\n", _(" -g, --gc Run the garbage collector and exit")); @@ -406,7 +406,7 @@ int parse_args(int argc, char **argv) int dump_imported = 0, export_uid = 0; /* Data file locations */ const char *datadir = NULL; - const char *cfile = NULL, *ifile = NULL, *conffile = NULL; + const char *cfile = NULL, *ifile = NULL, *confdir = NULL; int non_interactive = 1; int ch; @@ -479,7 +479,7 @@ int parse_args(int argc, char **argv) cfile = optarg; break; case 'C': - conffile = optarg; + confdir = optarg; break; case 'd': if (is_all_digit(optarg) || @@ -726,7 +726,7 @@ int parse_args(int argc, char **argv) else if (range < 0) from = date_sec_change(to, 0, range); - io_init(cfile, datadir, conffile); + io_init(cfile, datadir, confdir); io_check_dir(path_dir); io_check_dir(path_notes); -- cgit v1.2.3