You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
615 B
Markdown

2 years ago
### TedFlex - a File Explorer / Text Editor
TedFlex is an ncurses-based File Explorer and Text Editor application, written in C.
2 years ago
<br><br><br>
2 years ago
It uses a custom-compiled version of ncurses, and will likely crash if used with a regular ncurses library.
2 years ago
<br>
2 years ago
The following steps are used to compile the version of ncurses that this program needs:
- Grab the ncurses source code from [here](https://invisible-mirror.net/archives/ncurses/ncurses-6.3.tar.gz)
2 years ago
- Run the configure script (for ncurses) with the `--with-pthread --with-shared` options.
- Run `make` and `make install` to compile and install the library.
2 years ago