2231131fa08142da126bbd75aeb3bca0198e13a2
[dotfiles.git] / .config / zathura / mkzathurarc.sh
1 #!/bin/sh
2
3 get_option() {
4     xrdb -query | grep $1 | awk '{print $2}'
5 }
6
7 config_file=$XDG_CONFIG_HOME/zathura/zathurarc
8
9 cat > $config_file <<- CONF
10 set recolor
11 set recolor-darkcolor "$(get_option foreground)"
12 set recolor-lightcolor "$(get_option *.color0:)"
13 set default-bg "$(get_option *.color0:)"
14 map i recolor
15
16 set font Source Code Pro:size=12 
17 set statusbar-fg "$(get_option *.color0:)"
18 set statusbar-bg "$(get_option *.color2:)"
19 set statusbar-v-padding 2
20 set statusbar-h-padding 8
21
22 CONF