2025-12-09 12:54:35 -08:00
|
|
|
#!/bin/bash
|
2025-12-09 12:59:50 -08:00
|
|
|
set -e
|
2025-12-09 12:54:35 -08:00
|
|
|
|
|
|
|
|
git config --get remote.origin.url|fgrep -q bkuhn/config.git
|
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
|
echo "Run this in the actual directory where the Git checkout of the config is"
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
2013-09-01 13:06:27 -04:00
|
|
|
|
2025-12-09 11:37:57 -08:00
|
|
|
# Conkeror is a deprecated program
|
|
|
|
|
#/bin/ln -sf `pwd`/conkerorrc $HOME/.conkerorrc
|
2025-12-09 12:55:58 -08:00
|
|
|
/bin/ln -sf `pwd`/less/lesskey $HOME/.lesskey
|
2025-12-09 12:59:40 -08:00
|
|
|
if [ ! -d $HOME/.config ]; then
|
|
|
|
|
mkdir $HOME/.config
|
|
|
|
|
fi
|
2025-12-10 10:43:02 -08:00
|
|
|
/bin/ln -sf `pwd`/xfce4/autostart $HOME/.config/autostart
|
2025-12-09 13:41:36 -08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
/bin/ln -sf `pwd`/readline/inputrc $HOME/.inputrc
|
2025-12-10 10:47:59 -08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
/bin/ln -sf `pwd`/vim/vimrc $HOME/.vim/vimrc
|