]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - vcs/setup.sh
herbstluftwm/autostart: add bindings to run programs and select windows
[config/dotfiles.git] / vcs / setup.sh
1 #!/bin/sh
2
3 # Setup script for VCS configuration files.
4
5 # Copyright (C) 2011-2013  Simon Ruderich
6 #
7 # This program is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
20
21 set -eu
22
23 . ../lib.sh
24
25
26 if installed git; then
27     generate gitconfig .in simple_cpp PWD -- "`pwd`"
28
29     # Support for old gits.
30     if ! git status >/dev/null 2>&1; then
31         echo 'gitconfig: removing push.default = simple'
32         grep_i -v '^[[:space:]]default = simple$' gitconfig
33     fi
34     if ! git status >/dev/null 2>&1; then
35         echo 'gitconfig: removing color.function'
36         sed_i 's/^[[:space:]]*function = .*//' gitconfig
37     fi
38     if ! git log --patch >/dev/null 2>&1; then
39         echo 'gitconfig: replacing git log --patch with -p'
40         sed_i 's/log --patch/log -p/' gitconfig
41     fi
42     if git stash push -- doesnt-exist 2>&1 \
43             | grep 'usage: git stash list' > /dev/null; then
44         echo 'gitconfig: replacing "stash push" with "stash save"'
45         sed_i 's/stash push/stash save/g' gitconfig
46     fi
47
48     # If coloredstderr is used to color stderr then remove the workaround for
49     # missing output to stderr.
50     if test -n "${LD_PRELOAD:+set}" \
51             && printf '%s' "$LD_PRELOAD" | grep libcoloredstderr.so >/dev/null; then
52         echo 'gitconfig: removing stderr fix'
53         sed_i '/^\t\(fs\|fg\)  =/ s/2>&1//' gitconfig
54     fi
55
56     link gitconfig ~/.gitconfig
57 fi
58
59 if installed tig; then
60     generate tigrc .in cat
61     if tig --version | grep '^tig version 2\.[012]' >/dev/null; then
62         echo 'tigrc: removing history options'
63         grep_i -v '^set history-size = ' tigrc
64     fi
65     link tigrc ~/.tigrc
66 fi
67
68 if installed hg; then
69     link hgrc ~/.hgrc
70 fi
71
72 if installed cvs; then
73     # CVS doesn't support any comments nor empty lines in cvsrc.
74     grep -E -v '^#' cvsrc.in | grep -E -v '^$' >cvsrc
75
76     link cvsrc ~/.cvsrc
77 fi