3 # Setup script for shell configuration files.
10 # Generate ~/.less with lesskey.
14 # As screen-256color is not widely supported use it only on machines known to
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
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
29 # Rxvt doesn't need the attrcolor "fix". As I prefer rxvt assume I use it when
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
37 # Link setup for shells.
40 link bash/rc ~/.bashrc
41 link bash/profile ~/.bash_profile
42 link bash/logout ~/.bash_logout
44 link zsh/env ~/.zshenv
46 link zsh/logout ~/.zlogout
48 # Link setup for additional files.
49 if installed colordiff; then
50 link colordiffrc ~/.colordiffrc
52 link inputrc ~/.inputrc
53 link screenrc ~/.screenrc