diff options
author | Mattias Andrée <maandree@kth.se> | 2021-06-25 12:56:30 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-06-25 12:56:30 +0200 |
commit | 5a7db2f34aa6a6787d98a001b6d28be97f36abf4 (patch) | |
tree | 52db199005cc5daee35b5c0e9b3d28b534449e1c /atril | |
download | dotfiles-5a7db2f34aa6a6787d98a001b6d28be97f36abf4.tar.gz dotfiles-5a7db2f34aa6a6787d98a001b6d28be97f36abf4.tar.bz2 dotfiles-5a7db2f34aa6a6787d98a001b6d28be97f36abf4.tar.xz |
First commit
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'atril')
-rw-r--r-- | atril/Makefile | 12 | ||||
-rw-r--r-- | atril/atril_toolbar.xml | 29 |
2 files changed, 41 insertions, 0 deletions
diff --git a/atril/Makefile b/atril/Makefile new file mode 100644 index 0000000..cab4117 --- /dev/null +++ b/atril/Makefile @@ -0,0 +1,12 @@ +.POSIX: + +install: + mkdir -p -- ~/.config/atril + test ! -d ~/.config/atril/atril_toolbar.xml + ln -sf -- ~/.dotfiles/atril/atril_toolbar.xml ~/.config/atril/atril_toolbar.xml + +uninstall: + -unlink -- ~/.config/atril/atril_toolbar.xml + -rm -rf -- ~/.config/atril + +.PHONY: install uninstall diff --git a/atril/atril_toolbar.xml b/atril/atril_toolbar.xml new file mode 100644 index 0000000..1b5c719 --- /dev/null +++ b/atril/atril_toolbar.xml @@ -0,0 +1,29 @@ +<?xml version="1.0"?> +<toolbars version="1.0"> + <toolbar name="DefaultToolBar" hidden="false" editable="true"> + <toolitem name="GoPreviousPage"/> + <toolitem name="GoNextPage"/> + <separator/> + <toolitem name="PageSelector"/> + <separator/> + <toolitem name="ViewZoom"/> + <separator/> + <toolitem name="EditRotateLeft"/> + <toolitem name="EditRotateRight"/> + <separator/> + <toolitem name="ViewBestFit"/> + <toolitem name="ViewPageWidth"/> + <toolitem name="ViewZoomOut"/> + <toolitem name="ViewZoomIn"/> + <separator/> + <toolitem name="ViewInvertedColors"/> + <toolitem name="ViewPresentation"/> + <separator/> + <toolitem name="GoFirstPage"/> + <toolitem name="GoLastPage"/> + <separator/> + <toolitem name="ViewContinuous"/> + <toolitem name="ViewDual"/> + <toolitem name="ViewReload"/> + </toolbar> +</toolbars> |