]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - setup.sh
lessfilter: Add, help filer for lesspipe.
[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 # Display current battery charge on computers with a battery. Necessary lines
37 # are marked as "(BATTERY)".
38 if [ ! -d /sys/class/power_supply/BAT0 ]; then
39     echo screenrc: removing battery display
40     grep -v '(BATTERY)' screenrc > screenrc.tmp
41     mv screenrc.tmp screenrc
42 fi
43
44 # Link setup for shells.
45 link shell ~/.shell
46 link bash ~/.bash
47 link bash/rc ~/.bashrc
48 link bash/profile ~/.bash_profile
49 link bash/logout ~/.bash_logout
50 link zsh ~/.zsh
51 link zsh/env ~/.zshenv
52 link zsh/rc ~/.zshrc
53 link zsh/logout ~/.zlogout
54
55 # Link setup for additional files.
56 link lessfilter ~/.lessfilter
57 if installed colordiff; then
58     link colordiffrc ~/.colordiffrc
59 fi
60 link inputrc ~/.inputrc
61 link screenrc ~/.screenrc
62
63 # Create rlwrap history directory.
64 mkdir -p shell/rlwrap