1234567891011121314 |
- # mime_types is the array of primary mime type to open.
- # terminal_openers and non_terminal_openers are the commands to run to open files of that type, depending on if the script is called from a terminal or not.
- # For the URL types, same as terminal, but the type is a regex
- extensions=("pdf")
- extension_openers=("zathura")
- extension_openers_terminal=("zathura")
- mime_types=("image" "video" "text" "inode" "audio")
- mime_openers_terminal=("nsxiv" "mpv" "${VISUAL:-vi}" "cd" "mpv")
- mime_openers=("nsxiv" "mpv" "${TERMINAL:-xterm} -e ${VISUAL:-vi}" "st -e cd" "mpv")
- url_types=("https?://" "mail(to)?:" "lbry://" "magnet:?")
- url_openers_terminal=("qutebrowser" "${TERMINAL:-xterm} -e neomutt" "lbry-gtk" "qbittorrent")
- url_openers=("qutebrowser" "neomutt" "lbry-gtk" "qbittorrent")
|