home/bin/zatheme.sh (view raw)
1#!/usr/bin/env bash
2
3# stolen from @nerdypepper
4
5echo 'set incremental-search true
6
7set recolor "true"
8
9set default-bg "'$( get_xres color0 )'"
10set default-fg "'$( get_xres color7 )'"
11
12set completion-bg "'$( get_xres color0 )'"
13set completion-fg "'$( get_xres color7 )'"
14set completion-highlight-bg "'$( get_xres color4 )'"
15set completion-highlight-fg "'$( get_xres color7 )'"
16
17set statusbar-bg "'$( get_xres color4 )'"
18set statusbar-fg "'$( get_xres color0 )'"
19
20set inputbar-bg "'$( get_xres color0 )'"
21set inputbar-fg "'$( get_xres color7 )'"
22
23set recolor-darkcolor "'$( get_xres color7 )'"
24set recolor-lightcolor "'$( get_xres color0 )'"
25
26set window-height "800"
27set window-width "600"
28
29set adjust-open "width"
30set statusbar-home-tilde "true"
31set statusbar-h-padding "50"
32set statusbar-v-padding "50"
33
34set font "SF Mono 12"
35
36' > ~/.config/zathura/zathurarc
37