配置vifm,实现命令行中预览图片,回车调用自定义工具查看

vifm是一个linux命令行下非常方便的文件管理工具,但默认配置时,无法预览图片,且回车键显示的是图片源码。

修改配置文件~/.config/vifm/vifmrc,找到图片相关设置。
原配置如下:

230 " Images 
231 filextype {*.bmp,*.jpg,*.jpeg,*.png,*.gif,*.xpm},<image/*>
232         \ {View in sxiv}                                                                    
233         \ sxiv %f,
234         \ {View in gpicview}
235         \ gpicview %c,
236         \ {View in shotwell}
237         \ shotwell,
238 fileviewer {*.bmp,*.jpg,*.jpeg,*.png,*.gif,*.xpm},<image/*>
239         \ identify %f

修改为:

231 filextype {*.bmp,*.jpg,*.jpeg,*.png,*.gif,*.xpm},<image/*>
232         \ {View in display}
233         \ display %c,
234         \ {View in sxiv}
235         \ sxiv %f,
236         \ {View in gpicview}
237         \ gpicview %c,
238         \ {View in shotwell}
239         \ shotwell, 
240 fileviewer {*.bmp,*.jpg,*.jpeg,*.png,*.gif,*.xpm},<image/*>
241         \ chafa %c

display一般是linux自带的,chafa可能需要安装一下。
配置完成后,再运行vifm的效果如下。

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注