mirror of
https://github.com/dankamongmen/notcurses
synced 2025-03-09 17:19:03 -04:00
ncls: default to NCBLIT_PIXEL #1835
This commit is contained in:
parent
845ab5cdf9
commit
e813e3abe4
@ -31,9 +31,13 @@ ncls - List paths with rendering of multimedia
|
||||
|
||||
**-a**|**--align** ***type***: Align images on **left**, **center**, or **right**.
|
||||
|
||||
**-b**|**--blitter** ***blitter***: Blitter, one of **ascii**, **half**, **quad**, **sex**, **braille**, or **pixel**.
|
||||
**-b**|**--blitter** ***blitter***: Blitter, one of **ascii**, **half**,
|
||||
**quad**, **sex**, **braille**, or **pixel**. The default is ***pixel***.
|
||||
If the chosen blitter is unavailable, **ncls** will degrade (see
|
||||
**notcurses_visual(3)**).
|
||||
|
||||
**-s**|**--scale** ***scalemode***: Scaling mode, one of **none**, **hires**, **scale**, **scalehi**, or **stretch**.
|
||||
**-s**|**--scale** ***scalemode***: Scaling mode, one of **none**, **hires**,
|
||||
**scale**, **scalehi**, or **stretch**.
|
||||
|
||||
paths: Run on the specified paths. If none are supplied, run on the current
|
||||
directory.
|
||||
|
@ -186,7 +186,7 @@ int main(int argc, char* const * argv){
|
||||
bool longlisting = false;
|
||||
bool dereflinks = false;
|
||||
ncpp::NCAlign alignment = ncpp::NCAlign::Right;
|
||||
ncblitter_e blitter = NCBLIT_DEFAULT;
|
||||
ncblitter_e blitter = NCBLIT_PIXEL;
|
||||
ncscale_e scale = NCSCALE_SCALE_HIRES;
|
||||
const struct option opts[] = {
|
||||
{ "align", 1, nullptr, 'a' },
|
||||
|
Loading…
x
Reference in New Issue
Block a user