blob: c0687df6761a9ce4634e7a3633b02b59f644f0ea (
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
|
#!/bin/sh
cat << EOF > "$XDG_CONFIG_HOME/zathura/colors"
set completion-bg "$bg"
set completion-fg "$fg"
set completion-highlight-bg "$accent"
set completion-highlight-fg "$accent_text"
set default-bg "$bg"
set default-fg "$fg"
set highlight-active-color "$accent"
set highlight-color "$accent_text"
set inputbar-bg "$bg"
set inputbar-fg "$fg"
set notification-bg "$bg"
set notification-error-bg "$color9"
set notification-error-fg "$bg"
set notification-fg "$fg"
set notification-warning-bg "$color9"
set notification-warning-fg "$bg"
set recolor-darkcolor "$fg"
set recolor-lightcolor "$bg"
set statusbar-bg "$bg"
set statusbar-fg "$fg"
EOF
|