Merge pull request #8 from piotr-marendowski/feature

Update README
This commit is contained in:
Piotr Marendowski 2024-03-09 20:52:54 +00:00 committed by GitHub
commit 748171524b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,18 +1,45 @@
# ccc
`ccc` is a rewrite of fff in C aiming for [sucklessness](https://suckless.org/philosophy/) and speed.
`ccc` is a rewrite of [fff](https://github.com/piotr-marendowski/fff) in C aiming for [sucklessness](https://suckless.org/philosophy/) and speed.
The fact that it is written in C makes it more versatile and rapid, enabling us to add features that were previously ruled out due to time complexity. You may call it a `soft fork`.
## Features
Consider this project incomplete and WIP!
| Feature | Ported | Dropped | Added |
|---------|:------:|:-------:|:-----:|
| Standard movement | X | | |
| Advanced movement (jumps) | | | |
| Searching | | | |
| File preview | | | X |
| Sorting | | | |
| Marking and marking operations | | | |
| Other operations on files | | | |
| File details | | | |
| Image previews | | | |
| Help | | | |
| History | | | |
| Bookmarks | | | |
| Bulk rename | | | |
| Workspaces | | | |
| Workspaces | | | |
## Installation
### Dependencies
- gcc
- make
- pkg-config
- ncurses
- optional: libsixel
### Bulding
### Building
You may need to run these with elevated privilages.
```
$ make
# make install
make install
```