2c39413e1e
removed org sharing from .emacs added lua-mode to .emacs.d files changed timestamp to [mm:ss] to match status bar in irssi/custom.theme added newsbeuter configuration
36 lines
644 B
Bash
Executable file
36 lines
644 B
Bash
Executable file
#!/bin/bash
|
|
INSTALL_BASEFILE=`readlink -f $0`
|
|
if [ -z $INSTALL_BASEFILE ]; then
|
|
INSTALL_BASEFILE="$PWD/$0"
|
|
fi
|
|
INSTALL_BASEDIR=`dirname $INSTALL_BASEFILE`
|
|
|
|
CMD="ln -sfn"
|
|
|
|
function linkmy
|
|
{
|
|
echo "Linking $INSTALL_BASEDIR/$1 to $HOME/$2"
|
|
$CMD $INSTALL_BASEDIR/$1 $HOME/$2
|
|
}
|
|
|
|
# AWESOME
|
|
linkmy config/awesome .config/awesome
|
|
# EMACS
|
|
linkmy emacs .emacs
|
|
linkmy emacs.d .emacs.d
|
|
# IRSSI
|
|
linkmy irssi .irssi
|
|
# NCMPCPP
|
|
linkmy ncmpcpp .ncmpcpp
|
|
# NEWSBEUTER
|
|
linkmy newsbeuter .newsbeuter
|
|
# VIM
|
|
linkmy vimrc .vimrc
|
|
linkmy vim .vim
|
|
# XDEFAULTS
|
|
linkmy Xdefaults .Xdefaults
|
|
# XMODMAP
|
|
linkmy Xmodmap .Xmodmap
|
|
# ZSH
|
|
linkmy zshrc .zshrc
|
|
linkmy zsh .zsh
|