Zathura: Difference between revisions

From wikinotes
No edit summary
 
(4 intermediate revisions by the same user not shown)
Line 8: Line 8:
| homepage || https://pwmt.org/projects/zathura/
| homepage || https://pwmt.org/projects/zathura/
|-
|-
| gitlab || https://git.pwmt.org/pwmt/zathura
|-
| <code>man zathura</code> || https://man.archlinux.org/man/community/zathura/zathura.1.en
|-
| <code>man zathurarc</code> || https://man.archlinux.org/man/community/zathura/zathurarc.5.en
|}
|}
</blockquote><!-- Documentation -->
</blockquote><!-- Documentation -->
= Locations =
<blockquote>
{| class="wikitable"
|-
| <code>~/.config/zathura/zathurarc</code> || config
|-
| <code>~/.local/share/zathura</code> || program data, notably history (with current page info)
|-
|}
</blockquote><!-- Locations -->


= Install =
= Install =
Line 22: Line 38:
</source>
</source>
</blockquote><!-- Install -->
</blockquote><!-- Install -->
= Keybindings =
<blockquote>
<syntaxhighlight lang="yaml">
TAB  # (index) table of contents
</syntaxhighlight>
</blockquote><!-- Keybindings -->
= Configuration =
<blockquote>
<syntaxhighlight lang="vim">
" ~/.config/zathura/zathurarc
map <C-i> recolor  " toggle invert colours
</syntaxhighlight>
</blockquote><!-- Configuration -->

Latest revision as of 19:19, 7 August 2022

A comic book/pdf reader with vim keybindings,
complete with follow-links, customizable keybindings, and command mode.

Documentation

homepage https://pwmt.org/projects/zathura/
gitlab https://git.pwmt.org/pwmt/zathura
man zathura https://man.archlinux.org/man/community/zathura/zathura.1.en
man zathurarc https://man.archlinux.org/man/community/zathura/zathurarc.5.en

Locations

~/.config/zathura/zathurarc config
~/.local/share/zathura program data, notably history (with current page info)

Install

sudo pacman -S zathura
sudo pacman -S zathura-cb    # support comics
sudo pacman -S zathura-djvu  # support DjVu
sudo pacman -S zathura-ps    # support postscript
sudo pacman -S zathura-pdf-mupdf    # mupdf pdf engine (fast)
sudo pacman -S zathura-pdf-poppler  # poppler pdf engine

Keybindings

TAB  # (index) table of contents

Configuration

" ~/.config/zathura/zathurarc

map <C-i> recolor  " toggle invert colours