Compare commits

...

2 commits

Author SHA1 Message Date
5c036bbb73
Update README for dependency and fix capitalisation in config 2024-11-13 09:20:51 +00:00
92af1f596b
Update README 2024-11-13 08:53:31 +00:00
2 changed files with 5 additions and 4 deletions

View file

@ -1,5 +1,5 @@
# ccc
`ccc` is a rewrite of [fff](https://github.com/night0721/fff) in C aiming for usefulness and speed.
`ccc` is a rewrite of [fff](https://github.com/bogdan-the-great/fff) in C aiming for usefulness, size and speed with no dependency.
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`.
@ -15,14 +15,13 @@ Consider this project incomplete and WIP!
| Searching for files | | |
| Sorting | X | |
| Marking and marking operations | | |
| Other operations on files | | |
| Image previews | X | |
| Help | X | |
| History | | |
| Bookmarks | | |
| Bulk rename | | |
## Features added that are not in [fff](https://github.com/night0721/fff):
## Features added that are not in [fff](https://github.com/bogdan-the-great/fff):
- File preview
# Usage
@ -94,6 +93,7 @@ p: execute paste/move/delete/bulk_rename
# Dependencies
- Any [Nerd Font](https://www.nerdfonts.com/) for file icons (optional, but turned on by default)
- libsixel (Optional)
# Building
You will need to run these with elevated privilages.

View file

@ -1,6 +1,7 @@
#define PATH_MAX 4096 /* Max length of path */
/* Settings */
static int panel_height = 1; /* panel height */
static int panel_height = 1; /* Panel height */
static int jump_num = 14; /* Length of ctrl + u/d jump */
static int decimal_place = 1; /* Number of decimal places size can be shown */