From 4db9677119f412fd38440e5591afbfb631a11b3d Mon Sep 17 00:00:00 2001 From: Lars Henriksen Date: Sun, 12 May 2019 21:52:43 +0200 Subject: Make separation of days conspicuous ... by adding a horizontal line from border to border above the day heading and turning the event separator into an empty line. The horizontal line is left out for the first day loaded. Also reduce the number of empty lines at the end of a day to at most one. A new configuration variable, header_line, turns the horizontal line on and off. Signed-off-by: Lars Henriksen Signed-off-by: Lukas Fleischer --- src/vars.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/vars.c') diff --git a/src/vars.c b/src/vars.c index d3080eb..b81ab5f 100644 --- a/src/vars.c +++ b/src/vars.c @@ -122,9 +122,11 @@ void vars_init(void) /* Variables for user configuration */ conf.cal_view = CAL_MONTH_VIEW; conf.todo_view = TODO_HIDE_COMPLETED_VIEW; - conf.empty_appt_line = 1; conf.multiple_days = 7; - conf.dayseparator = 2; + conf.header_line = 1; + conf.event_separator = 1; + conf.day_separator = 1; + conf.empty_appt_line = 1; conf.confirm_quit = 1; conf.confirm_delete = 1; conf.auto_save = 1; -- cgit v1.2.3-54-g00ecf