https://github.com/th3worst4/termtrove
Minimalist file explorer to linux, uses a terminal interface
https://github.com/th3worst4/termtrove
c file-manager linux linux-app ncurses-library ncurses-tui terminal tui
Last synced: 2 months ago
JSON representation
Minimalist file explorer to linux, uses a terminal interface
- Host: GitHub
- URL: https://github.com/th3worst4/termtrove
- Owner: th3worst4
- License: mit
- Created: 2024-03-07T04:29:01.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-11T02:47:33.000Z (over 2 years ago)
- Last Synced: 2025-01-18T14:35:09.635Z (over 1 year ago)
- Topics: c, file-manager, linux, linux-app, ncurses-library, ncurses-tui, terminal, tui
- Language: C
- Homepage:
- Size: 39.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Termtrove
Termtrove(or Terminal Trove) is a Terminal User Interfaced(TUI) file explorer written in C and designed for Linux machines.
Its minimalistic design and intuitive commands make the program very easy to learn and use for daily tasks.
Be aware this is an ongoing project and many common features on most file explorers are yet not implemented as:
* Create directories
* Rename files/directories
* Copy, paste or cut files/directories
## How to build it?
### Requirements
* gcc compiler;
* GNU [Make][].
### Steps
First you should clone this repository using:
`git clone https://github.com/th3worst4/termtrove.git termtrove/ && cd termtrove/`
After, you compile it using:
`make release`
A new folder called bin should appear, the compiled binary is under the path:
`bin/main`
## License
This software is under MIT License, for more information check [License][] text file.
## Update logs
* 03/09/2024 - goparent and gochild functions modified. Splited code on many source files to be more consistent
* 03/10/2024 - Updated README.md, short description and HowTo build were added. Added delete function.
[License]:/LICENSE
[Make]: https://www.gnu.org/software/make/manual/make.html