aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--abook/abookrc17
-rwxr-xr-xinstall.sh4
2 files changed, 21 insertions, 0 deletions
diff --git a/abook/abookrc b/abook/abookrc
new file mode 100644
index 0000000..a09ac7b
--- /dev/null
+++ b/abook/abookrc
@@ -0,0 +1,17 @@
1set use_mouse=true
2set show_all_emails=true
3set sort_field=nick
4set address_style=eu
5set use_ascii_only=false
6set add_email_prevent_duplicates=false
7set index_format="{name:32} │ {email:40} │ {phone:-20} │ {workphone:-20|mobile}"
8
9set use_colors=true
10set color_header_fg=black
11set color_header_bg=white
12set color_footer_fg=black
13set color_footer_bg=white
14set color_list_header_fg=white
15set color_list_header_bg=blue
16set color_list_even_fg=grey
17set color_list_odd_fg=yellow
diff --git a/install.sh b/install.sh
index d758066..fb7dac4 100755
--- a/install.sh
+++ b/install.sh
@@ -3,6 +3,10 @@
3CONFIG=~/.config 3CONFIG=~/.config
4mkdir -p "$CONFIG" 4mkdir -p "$CONFIG"
5 5
6# abook
7mkdir -p ~/.abook
8cp abook/abookrc ~/.abook
9
6# tmux 10# tmux
7cp -R tmux "$CONFIG" 11cp -R tmux "$CONFIG"
8 12