]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - setup.sh
setup.sh: Add some debug output.
[config/dotfiles.git] / setup.sh
1 #!/bin/sh
2
3 # Setup script for shell configuration files.
4
5
6 . ../lib.sh
7
8 hostname=`hostname`
9
10 # Generate ~/.less with lesskey.
11 lesskey lesskey
12 chmod 0600 ~/.less
13
14 # As screen-256color is not widely supported use it only on machines known to
15 # work.
16 generate cat screenrc .in
17 if [ $hostname != asp -a $hostname != systemofadown ]; then
18     sed 's/Enable 256 color/Disable 256 color/;
19          s/screen-256color/screen/' screenrc > screenrc.tmp
20     mv screenrc.tmp screenrc
21 fi
22 # I use some features of screen which are only in Git. Drop them on machines
23 # which have older versions. They are marked as "(GIT)".
24 if [ $hostname != asp ]; then
25     echo screenrc: removing Git features
26     grep -v '(GIT)' screenrc > screenrc.tmp
27     mv screenrc.tmp screenrc
28 fi
29 # Rxvt doesn't need the attrcolor "fix". As I prefer rxvt assume I use it when
30 # it's installed.
31 if installed rxvt; then
32     echo screenrc: removing attrcolor \"fix\"
33     sed 's/attrcolor b ".I"/#attrcolor b ".I"/' screenrc > screenrc.tmp
34     mv screenrc.tmp screenrc
35 fi
36
37 # Link setup for shells.
38 link shell ~/.shell
39 link bash ~/.bash
40 link bash/rc ~/.bashrc
41 link bash/profile ~/.bash_profile
42 link bash/logout ~/.bash_logout
43 link zsh ~/.zsh
44 link zsh/env ~/.zshenv
45 link zsh/rc ~/.zshrc
46 link zsh/logout ~/.zlogout
47
48 # Link setup for additional files.
49 if installed colordiff; then
50     link colordiffrc ~/.colordiffrc
51 fi
52 link inputrc ~/.inputrc
53 link screenrc ~/.screenrc