blob: 576cebbac90f127b0988556ff6cb60f78e138a51 (
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 \"$ttfont\"
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
|