mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 12:56:51 +03:00
ce07bec728
This commit makes a few improvements in default bindings: * use chm_http text-mode handler for CHM files; * play sounds only from videos in text mode; * use pdftotext -layout -nopgbrk switches; * try to use elinks before links for HTML; * soffice2html text-mode handler for SXW files; * wvHtml text-mode handler for doc files; * xlhtml text-mode handler for XLS files; * ppthtml text-mode handler for PPT/PPS files; * open=view+pager fallback (noX) for PostScript, PDF, OD[PST] and DVI; * standarized $DISPLAY checks. Signed-off-by: Slava Zanko <slavazanko@gmail.com>
54 lines
1.0 KiB
Bash
54 lines
1.0 KiB
Bash
#!/bin/sh
|
|
|
|
# $1 - action
|
|
# $2 - type of file
|
|
|
|
action=$1
|
|
filetype=$2
|
|
|
|
do_view_action() {
|
|
filetype=$1
|
|
|
|
case "${filetype}" in
|
|
html)
|
|
links -dump "${MC_EXT_FILENAME}" 2>/dev/null || \
|
|
w3m -dump "${MC_EXT_FILENAME}" 2>/dev/null || \
|
|
lynx -dump -force_html "${MC_EXT_FILENAME}"
|
|
;;
|
|
*)
|
|
;;
|
|
esac
|
|
}
|
|
|
|
do_open_action() {
|
|
filetype=$1
|
|
|
|
case "${filetype}" in
|
|
html)
|
|
(if [ -n "@X11_WWW@" -a -n "$DISPLAY" ]; then
|
|
(@X11_WWW@ file://"${MC_EXT_CURRENTDIR}"/"${MC_EXT_BASENAME}" &) 1>&2
|
|
else
|
|
elinks "${MC_EXT_FILENAME}" || \
|
|
links "${MC_EXT_FILENAME}" || \
|
|
lynx -force_html "${MC_EXT_FILENAME}" || \
|
|
${PAGER:-more} "${MC_EXT_FILENAME}"
|
|
fi) 2>/dev/null
|
|
;;
|
|
*)
|
|
;;
|
|
esac
|
|
}
|
|
|
|
case "${action}" in
|
|
view)
|
|
do_view_action "${filetype}"
|
|
;;
|
|
open)
|
|
xdg-open "${MC_EXT_FILENAME}" 2>/dev/null || \
|
|
do_open_action "${filetype}"
|
|
;;
|
|
*)
|
|
;;
|
|
esac
|
|
|