diff options
| author | Luke Bubar <43391582+lukerb52@users.noreply.github.com> | 2020-05-28 07:10:48 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-28 07:10:48 -0400 |
| commit | ce94f3ee8eb21aba0649d1a811a9fc84ec851082 (patch) | |
| tree | 44e3e442a380c6cd18df3a53dec507f5af2099f0 /.config/lf/lfrc | |
| parent | 1260ba7da487785342f05d1fce8d1d5e8b40a343 (diff) | |
| download | eibhear-ce94f3ee8eb21aba0649d1a811a9fc84ec851082.tar.gz eibhear-ce94f3ee8eb21aba0649d1a811a9fc84ec851082.tar.zst eibhear-ce94f3ee8eb21aba0649d1a811a9fc84ec851082.zip | |
Added epub, cbz, and cbr support to lf (#655)
* Added `epub` support to the `lfrc`
* Update lfrc
Diffstat (limited to '.config/lf/lfrc')
| -rw-r--r-- | .config/lf/lfrc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.config/lf/lfrc b/.config/lf/lfrc index f07b8d4..13c46eb 100644 --- a/.config/lf/lfrc +++ b/.config/lf/lfrc @@ -22,6 +22,9 @@ cmd open ${{ audio/*) mpv --audio-display=no $f ;; video/*) setsid mpv $f -quiet >/dev/null 2>&1 & ;; application/pdf) setsid zathura $fx >/dev/null 2>&1 & ;; + application/epub+zip) setsid zathura $fx >/dev/null 2>&1 & ;; + application/vnd.comicbook+zip) setsid zathura $fx >/dev/null 2>&1 & ;; + application/vnd.comicbook-rar) setsid zathura $fx >/dev/null 2>&1 & ;; *) for f in $fx; do setsid $OPENER $f >/dev/null 2>&1 & done;; esac }} |
