blob: f1b7e8b56368a66f13e2c73720640cb0fa185c50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{
echo "\
set font \"$mfont $mfont_size\"
set highlight-color \"$bg_normal\"
set highlight-active-color \"$bg_focus\"
set scroll-page-aware true
set window-title-basename true
set selection-clipboard clipboard
set selection-notification false
set statusbar-home-tilde true
"
normal=(completion default index inputbar statusbar notification-warning)
focus=(completion-highlight index-active notification-error)
for i in ${normal[@]}; do
echo "set $i-fg \"$fg_normal\""
echo "set $i-bg \"$bg_normal\""
done
for i in ${focus[@]}; do
echo "set $i-fg \"$fg_focus\""
echo "set $i-bg \"$bg_focus\""
done
} > $tmpdir/zathurarc
|