bc0d088a49
Removed dotawesome and dotemacs Added pinerc
23 lines
603 B
Bash
Executable file
23 lines
603 B
Bash
Executable file
INSTALL_BASEFILE=`readlink -f $0`
|
|
INSTALL_BASEDIR=`dirname $INSTALL_BASEFILE`
|
|
|
|
|
|
# XDEFAULTS
|
|
echo "Linking $INSTALL_BASEDIR/.Xdefaults to $HOME/.Xdefaults"
|
|
ln -sf $INSTALL_BASEDIR/.Xdefaults $HOME/.Xdefaults
|
|
|
|
# XMODMAP
|
|
echo "Linking $INSTALL_BASEDIR/.Xmodmap to $HOME/.Xmodmap"
|
|
ln -sf $INSTALL_BASEDIR/.Xmodmap $HOME/.Xmodmap
|
|
|
|
# PINERC
|
|
echo "Linking $INSTALL_BASEDIR/pinerc to $HOME/.pinerc"
|
|
ln -sf $INSTALL_BASEDIR/pinerc $HOME/.pinerc
|
|
|
|
#for item in `ls`; do
|
|
# if [ -d $item ]; then
|
|
# if [ -e $item/install.sh ]; then
|
|
# . $item/install.sh $INSTALL_BASEDIR
|
|
# fi
|
|
# fi
|
|
#done
|