fe

terminal file explorer and picker

git clone https://9o.is/git/fe.git

commit 85330f0636e8e0b41b3b261025c852fa19ed594e
parent 8a09021efed59ad30725c012c26d2557c4f5bb60
Author: Jul <jul@9o.is>
Date:   Thu,  7 Aug 2025 07:54:48 -0400

reconfigure defaults

Diffstat:
MMakefile | 5+----
Mconfig.def.h | 8++++----
2 files changed, 5 insertions(+), 8 deletions(-)

diff --git a/Makefile b/Makefile @@ -1,4 +1,4 @@ -VERSION=1.1 +VERSION=0.1 CPPFLAGS=-DVERSION=\"${VERSION}\" -D_GNU_SOURCE CFLAGS+=-MD -Wall -Wextra -g -std=c99 -O3 -pedantic -Werror=vla @@ -28,9 +28,6 @@ install: fe mkdir -p $(DESTDIR)$(BINDIR) cp fe $(DESTDIR)$(BINDIR)/ chmod 755 ${DESTDIR}${BINDIR}/fe - mkdir -p $(DESTDIR)$(MANDIR)/man1 - cp fe.1 $(DESTDIR)$(MANDIR)/man1/ - chmod 644 ${DESTDIR}${MANDIR}/man1/fe.1 clean: rm -f fe *.o *.d diff --git a/config.def.h b/config.def.h @@ -12,13 +12,13 @@ extern "C" { #define COLOR_REGULAR TTY_COLOR_NORMAL #define DEFAULT_TTY "/dev/tty" -#define DEFAULT_NUM_FILES 999 +#define DEFAULT_NUM_FILES 25 #define KEYTIMEOUT 25 -#define SORT_DIR 1; -#define SORT_ICASE 1; +#define SORT_DIR 0; +#define SORT_ICASE 0; #define SORT_MTIME 0; -#define SHOW_HIDDEN 1; +#define SHOW_HIDDEN 0; #ifdef __cplusplus }