Update README for dependency and fix capitalisation in config
This commit is contained in:
parent
92af1f596b
commit
5c036bbb73
2 changed files with 5 additions and 4 deletions
|
@ -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`.
|
||||
|
||||
|
@ -21,7 +21,7 @@ Consider this project incomplete and WIP!
|
|||
| 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
|
||||
|
@ -92,8 +92,8 @@ p: execute paste/move/delete/bulk_rename
|
|||
```
|
||||
|
||||
# Dependencies
|
||||
- libsixel
|
||||
- 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.
|
||||
|
|
3
config.h
3
config.h
|
@ -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 */
|
||||
|
||||
|
|
Loading…
Reference in a new issue