@@ -54,7 +54,7 @@ Here's my `zathurarc` configuration for a Gruvbox-themed experience:
54
54
55
55
# General Settings
56
56
set guioptions "shv"
57
- set page-padding 1
57
+ set page-padding 2
58
58
set adjust-open "best-fit"
59
59
set window-height 3000
60
60
set window-width 3000
@@ -69,6 +69,7 @@ set selection-clipboard "clipboard"
69
69
set database "sqlite"
70
70
71
71
# Notification Settings
72
+ # https://github.com/eastack/zathura-gruvbox
72
73
set notification-error-bg "rgba(242,229,188,1)" # bg
73
74
set notification-error-fg "rgba(157,0,6,1)" # bright:red
74
75
set notification-warning-bg "rgba(242,229,188,1)" # bg
@@ -120,13 +121,15 @@ map r reload
120
121
map R rotate
121
122
map c recolor
122
123
map p print
123
- map g goto top
124
+ map g goto top
125
+ map <Return> goto
124
126
map <C-b> feedkeys ":bmark "
125
127
map u follow
126
- map <Return > toggle_presentation
127
- map [presentation] <Return > toggle_presentation
128
+ map <C-f > toggle_presentation
129
+ map [presentation] <C-f > toggle_presentation
128
130
129
131
# Index Mode
132
+ # https://github.com/alezost/config/blob/master/zathura/zathurarc
130
133
map [index] i toggle_index
131
134
map [index] <Tab> navigate_index toggle
132
135
map [index] <ShiftTab> navigate_index expand-all
@@ -136,10 +139,9 @@ I use this script to open files.
136
139
` ` ` bash
137
140
#!/bin/bash
138
141
139
- # Select a book or paper using fd and fzf
142
+ # Select a book using fd and fzf
140
143
files=$(fd --follow --type f --extension pdf --extension epub | fzf --height 75% --reverse --no-info --multi --prompt "Select Book/Paper: ")
141
144
142
- # Check if a selection was made
143
145
if [[ -n "$files" ]]; then
144
146
# Open each selected file
145
147
while IFS= read -r file; do
0 commit comments