aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xplugins/nuke5
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/nuke b/plugins/nuke
index 50840fe..ca6a2b7 100755
--- a/plugins/nuke
+++ b/plugins/nuke
@@ -47,7 +47,7 @@
# log: vi
# torrent: rtorrent, transmission-show
# odt|ods|odp|sxw: odt2txt
-# md: glow (https://github.com/charmbracelet/glow)
+# md: glow (https://github.com/charmbracelet/glow), lowdown (https://kristaps.bsd.lv/lowdown)
# htm|html|xhtml: w3m, lynx, elinks
# json: jq, python (json.tool module)
# Multimedia by mime:
@@ -209,6 +209,9 @@ handle_extension() {
if which glow >/dev/null 2>&1; then
glow -sdark "${FPATH}" | less -R
exit 0
+ elif which lowdown >/dev/null 2>&1; then
+ lowdown -Tterm "${FPATH}" | less -R
+ exit 0
fi
;;