1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
|
############################################
# Configuration file Clifm's BFG previewer #
############################################
# Commented and blank lines are omitted
# GENERAL OPTIONS
# Maximum height of the FZF window. Defaults to 80%
FZFHEIGHT="80%"
# Location of the previwer script. Defaults to
# "${XDG_CONFIG_HOME:-$HOME/.config}/clifm/plugins/BFG.sh"
BFG_FILE=""
# Resource opener to use. Defaults to Lira, Clifm's built-in opener
OPENER="clifm"
# BFG caches images to speed up the previewing process (only files
# that need to be converted into images are cached). Specify where
# to store these cached images. Defaults to
# "${XDG_CACHE_HOME:-$HOME/.cache}/clifm/previews"
PREVIEWDIR=""
# Set to 1 to use Ranger's scope.sh file instead of BFG
USE_SCOPE=0
# Location of the scope.sh file. Defaults to
# "${XDG_CONFIG_HOME:-$HOME/.config}/ranger/scope.sh"
SCOPE_FILE=""
# Set to 1 to use pistol instead of BFG
USE_PISTOL=0
PREVIEW_IMAGES=1
PLAY_MUSIC=1
ANIMATE_GIFS=1
# Try to print file information if no previewing application is found
FALLBACK_INFO=1
# FILETYPE DEFINITIONS
# Choose previewing applications for file types. Available options
# are provided as comments above each line.
# Use 'none' to prevent previews of the corresponding file type.
# Leave blank to let BFG check for available applications and use
# the first one found (the order of this check is the same as the
# order in the comments below). Ex: for archives, atool will be
# checked first, then bsdtar, and finally tar.
# atool (recommended), bsdtar, tar
ARCHIVES=""
# w3m, linx, elinks, cat
BROWSER=""
# ddjvu (image preview), ddjvutxt (text preview)
DDJVU=""
# tree, ls, exa, exa-tree, lsd, lsd-tree
DIR=""
# libreoffice (image preview), text (text preview)
# NOTE: 'text' is not iteself an application. It instructs BFG to
# look for an application able to print documents as text. Checks
# are made for the following applications: catdoc, odt2txt, xls2csv,
# xls2xcsv, and pandoc
DOC=""
# epub-thumbnailer
EPUB=""
# exitool
FILEINFO=""
# fontpreview, fontimage
FONTS=""
# ueberzug, kitty, viu, catimg, chafa, img2txt, pixterm
IMG=""
# python, jq, cat
JSON=""
# glow, mdcat
MARKDOWN=""
# mediainfo
MEDIAINFO=""
# ffplay, mplayer, mpv
MUSIC=""
# pdftoppm (image preview), pdftotext (text preview), mutool
PDF=""
# bat, highlight, pygmentize, cat
TEXT=""
# ffmpegthumbailer
VIDEO=""
|