blob: 6ef7b7bd119c1ea19b9dd254a55d2764bfdbe0ef (
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
|
{
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
"
normal=("completion" "default" "index" "inputbar" "statusbar")
focus=("completion-highlight" "index-active")
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
} > /tmp/zathurarc
|