From 987bbcf981a917af59c5f36bc1164d2330d3ad65 Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Sat, 14 Jan 2023 02:18:14 +0000 Subject: [PATCH] zathura: configure zathura to use nord colors and dark pages by default --- Makefile | 3 ++ zathura/zathurarc | 93 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 96 insertions(+) create mode 100644 zathura/zathurarc diff --git a/Makefile b/Makefile index a8f26ed..364b541 100644 --- a/Makefile +++ b/Makefile @@ -174,6 +174,9 @@ weechat: $(XDG_CONFIG_HOME) $(XDG_CACHE_HOME) mkdir -p $(XDG_CACHE_HOME)/weechat .PHONY: weechat +zathura: $(XDG_CONFIG_HOME) + ln -sfT $(APATH)/$@ $(XDG_CONFIG_HOME)/$@ +.PHONY: zathura zsh: $(XDG_CONFIG_HOME) ln -sfT $(APATH)/zshrc ~/.zshrc diff --git a/zathura/zathurarc b/zathura/zathurarc new file mode 100644 index 0000000..cdb8f57 --- /dev/null +++ b/zathura/zathurarc @@ -0,0 +1,93 @@ +# Use this easy configuring +# map r feedkeys :source + +set default-bg "#3b4252" + +set recolor true +set recolor-keephue false +set recolor-lightcolor "#2e3440" +set recolor-darkcolor "#eceff4" +set recolor-reverse-video false + +set highlight-color "#EBCB8B" +set highlight-fg "#2e3440" +set highlight-active-color "#D08770" +set highlight-transparency 0.5 + +set statusbar-bg "#2e3440" +set statusbar-fg "#eceff4" +set statusbar-h-padding 8 +set statusbar-v-padding 2 + +#set n-completion-items 15 +set completion-bg "#434c5e" +set completion-fg "#D8DEE9" +set completion-group-bg "#434c5e" +#set completion-group-fg "#DEDEDE" +#set completion-highlight-bg "#9FBC00" +#set completion-highlight-fg "#232323" +#set exec-command "" +#set font "monospace normal 9" +#set guioptions "s" +set inputbar-bg "#434c5e" +set inputbar-fg "#D8DEE9" +#set notification-bg "#FFFFFF" +#set notification-fg "#000000" +#set notification-error-bg "#FFFFFF" +#set notification-error-fg "#FF1212" +#set notification-warning-bg "#FFFFFF" +#set notification-warning-fg "#FFF712" +#set window-icon "" +#set window-height 600 +#set window-width 800 +#set abort-clear-search "true" +#set adjust-open "best-fit" +#set advance-pages-per-row "false" +#set continuous-hist-save "false" +#set database "plain" +#set dbus-service "true" +#set dbus-raise-window "true" +#set filemonitor "glib" +#set incremental-search "true" +#set page-padding 1 +#set page-cache-size 15 +#set page-thumbnail-size 4194304 +#set pages-per-row 1 +#set first-page-column "1:2" +#set recolor-reverse-video "false" +#set render-loading "true" +#set render-loading-bg "#FFFFFF" +#set render-loading-fg "#000000" +#set scroll-hstep -1 +#set scroll-step 40 +#set scroll-full-overlap 0 +#set scroll-wrap "false" +#set show-directories "true" +#set show-hidden "false" +#set show-recent 10 +#set scroll-page-aware "false" +#set link-zoom "true" +#set link-hadjust "true" +#set search-hadjust "true" +#set window-title-basename "false" +#set window-title-home-tilde "false" +#set window-title-page "false" +#set statusbar-basename "false" +#set statusbar-page-percent "false" +#set statusbar-home-tilde "false" +#set zoom-center "false" +#set vertical-center "false" +#set zoom-max 1000 +#set zoom-min 10 +#set zoom-step 10 +#set selection-clipboard "primary" +#set selection-notification "true" +#set synctex "true" +#set synctex-editor-command "" +#set index-fg "#DDDDDD" +#set index-bg "#232323" +#set index-active-fg "#232323" +#set index-active-bg "#9FBC00" +#set sandbox "normal" +#set window-icon-document "false" +#set page-right-to-left "false" -- 2.48.1