From 92ce25077a96edb79d3cdc1246590963fc73e9d7 Mon Sep 17 00:00:00 2001 From: speedie Date: Tue, 25 Jul 2023 00:12:06 +0200 Subject: [PATCH] Place items at the bottom by default --- libs/options.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/options.h b/libs/options.h index 52c3ac4..197f7f9 100644 --- a/libs/options.h +++ b/libs/options.h @@ -103,7 +103,7 @@ static int regex = 0; /* Whether or not to enable regex ma static char *listfile = NULL; /* File to read entries from instead of stdin. NULL means read from stdin instead. */ /* Line options */ -static int itemposition = 1; /* Item position (0: Bottom, 1: Top) */ +static int itemposition = 0; /* Item position (0: Bottom, 1: Top) */ static int lineheight = 1; /* Line height (0: Calculate automatically) */ static int lines = 0; /* Default number of lines */ static int columns = 10; /* Default number of columns */