]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - setup.sh
setup.sh: Don't call hostname multiple times.
[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     grep -v '(GIT)' screenrc > screenrc.tmp
26     mv screenrc.tmp screenrc
27 fi
28
29 # Link setup for shells.
30 link shell ~/.shell
31 link bash ~/.bash
32 link bash/rc ~/.bashrc
33 link bash/profile ~/.bash_profile
34 link bash/logout ~/.bash_logout
35 link zsh ~/.zsh
36 link zsh/env ~/.zshenv
37 link zsh/rc ~/.zshrc
38 link zsh/logout ~/.zlogout
39
40 # Link setup for additional files.
41 if installed colordiff; then
42     link colordiffrc ~/.colordiffrc
43 fi
44 link inputrc ~/.inputrc
45 link screenrc ~/.screenrc