]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
zathurarc: Add, basic configuration file.
authorSimon Ruderich <simon@ruderich.org>
Tue, 24 Jan 2012 17:11:02 +0000 (18:11 +0100)
committerSimon Ruderich <simon@ruderich.org>
Tue, 24 Jan 2012 17:11:02 +0000 (18:11 +0100)
setup.sh
zathurarc [new file with mode: 0644]

index 961e465cc35e95a9b8994b125ff5763e62489677..efd7255a281c935fc698834c595e03b584b569af 100755 (executable)
--- a/setup.sh
+++ b/setup.sh
@@ -45,3 +45,7 @@ fi
 if installed xpdf; then
     link xpdfrc ~/.xpdfrc
 fi
+if installed zathura; then
+    mkdir -p ~/.config/zathura
+    link zathurarc ~/.config/zathura/zathurarc
+fi
diff --git a/zathurarc b/zathurarc
new file mode 100644 (file)
index 0000000..4fa53df
--- /dev/null
+++ b/zathurarc
@@ -0,0 +1,25 @@
+# zathura (pdf viewer) configuration file.
+
+
+# SETTINGS
+
+# Save position and zoom level of opened files.
+set save_position true
+set save_zoom_level true
+
+# Don't display status and inputbar for maximum space efficiency.
+set show_statusbar false
+set show_inputbar false
+
+
+# MAPPINGS
+
+# Quit zathura.
+map q quit
+
+# Zoom in and out.
+map + zoom in
+map - zoom out
+
+# Reload current PDF (in case autoreload doesn't work).
+map r reload