dc124da3cc
Removed conkerorrc, I don't use it Removed canto rc, I can't use it, makes my PC go all crazy Removed pinerc, its own remote config works better, keeps overriding my link
19 lines
492 B
Bash
Executable file
19 lines
492 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
|
|
|
|
#for item in `ls`; do
|
|
# if [ -d $item ]; then
|
|
# if [ -e $item/install.sh ]; then
|
|
# . $item/install.sh $INSTALL_BASEDIR
|
|
# fi
|
|
# fi
|
|
#done
|