example.config 781 B

1234567891011121314
  1. # mime_types is the array of primary mime type to open.
  2. # 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.
  3. # For the URL types, same as terminal, but the type is a regex
  4. extensions=("pdf")
  5. extension_openers=("zathura")
  6. extension_openers_terminal=("zathura")
  7. mime_types=("image" "video" "text" "inode" "audio")
  8. mime_openers_terminal=("nsxiv" "mpv" "${VISUAL:-vi}" "cd" "mpv")
  9. mime_openers=("nsxiv" "mpv" "${TERMINAL:-xterm} -e ${VISUAL:-vi}" "st -e cd" "mpv")
  10. url_types=("https?://" "mail(to)?:" "lbry://" "magnet:?")
  11. url_openers_terminal=("qutebrowser" "${TERMINAL:-xterm} -e neomutt" "lbry-gtk" "qbittorrent")
  12. url_openers=("qutebrowser" "neomutt" "lbry-gtk" "qbittorrent")