diff options
| author | Luke Bubar <43391582+lukerb52@users.noreply.github.com> | 2020-06-06 22:08:33 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-06 22:08:33 -0400 |
| commit | 0646d9bb81a28c62b1f7ee649ea51fed489de8c7 (patch) | |
| tree | 07f318cb7ef9c62ecf0a475ced45e9480d141bfb | |
| parent | 6d2c74da3af198e8aefdb009a68eb91b446348df (diff) | |
| download | eibhear-0646d9bb81a28c62b1f7ee649ea51fed489de8c7.tar.gz eibhear-0646d9bb81a28c62b1f7ee649ea51fed489de8c7.tar.zst eibhear-0646d9bb81a28c62b1f7ee649ea51fed489de8c7.zip | |
Added support for .tif images (#695)
tif files are a type of gray-scale images.
| -rw-r--r-- | .config/lf/lfrc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/lf/lfrc b/.config/lf/lfrc index 1a8442f..f7f9410 100644 --- a/.config/lf/lfrc +++ b/.config/lf/lfrc @@ -18,7 +18,7 @@ cmd open ${{ image/vnd.djvu|application/pdf|application/octet-stream) setsid -f zathura $fx >/dev/null 2>&1 ;; text/*) $EDITOR $fx;; image/x-xcf|image/svg+xml) setsid -f gimp $f >/dev/null 2>&1 ;; - image/*) rotdir $f | grep -i "\.\(png\|jpg\|jpeg\|gif\|webp\)\(_large\)*$" | sxiv -aio 2>/dev/null | lf-select ;; + image/*) rotdir $f | grep -i "\.\(png\|jpg\|jpeg\|gif\|webp\|tif\)\(_large\)*$" | sxiv -aio 2>/dev/null | lf-select ;; audio/*) mpv --audio-display=no $f ;; video/*) setsid -f mpv $f -quiet >/dev/null 2>&1 ;; application/pdf|application/vnd*|application/epub*) setsid -f zathura $fx >/dev/null 2>&1 ;; |
