Browse Source

Cleanup install script and add XDG_DATA_HOME folder

v2
lhark 7 years ago
parent
commit
99c2410e0e
  1. 3
      data/splatmoji/emotes.tsv
  2. 16
      install.sh

3
data/splatmoji/emotes.tsv

@ -0,0 +1,3 @@
¯\_(ツ)_/¯ whatever, shrug
¯\\_(ツ)_/¯ whatever, shrug
✽-(ˆ▽ˆ)/✽ cheerleader, pom-pom
1 ¯\_(ツ)_/¯ whatever shrug
2 ¯\\_(ツ)_/¯ whatever shrug
3 ✽-(ˆ▽ˆ)/✽ cheerleader pom-pom

16
install.sh

@ -4,10 +4,12 @@ SCRIPT=$(readlink -f "$0")
RC_PATH=$(dirname "$SCRIPT") RC_PATH=$(dirname "$SCRIPT")
HOST=$(hostname) HOST=$(hostname)
XDG_CONFIG_HOME=${XDG_CONFIG_HOME:-$HOME/.config} XDG_CONFIG_HOME=${XDG_CONFIG_HOME:-$HOME/.config}
XDG_DATA_HOME=${XDG_DATA_HOME:-$HOME/.local/share}
# List of the config files to install # List of the config files to install
FILES="vimrc zshrc gitconfig vim gitignore_global git_user ctags.d" FILES="vimrc zshrc gitconfig vim gitignore_global git_user ctags.d"
CONF_DIR="config" CONF_DIR="config"
DATA_DIR="data"
if [ ! -e "$HOME/.git_user" ]; then if [ ! -e "$HOME/.git_user" ]; then
cp "$RC_PATH/git_user.def" "$RC_PATH/git_user" cp "$RC_PATH/git_user.def" "$RC_PATH/git_user"
@ -16,9 +18,9 @@ if [ ! -e "$HOME/.git_user" ]; then
fi fi
# Init or update submodules # Init or update submodules
cd "$RC_PATH" cd "$RC_PATH" || exit
git submodule update --init --recursive git submodule update --init --recursive
cd - > /dev/null cd - > /dev/null || exit
# Setup fast-syntax-highlighting theme customization # Setup fast-syntax-highlighting theme customization
cp "$RC_PATH/fsh_theme.zsh" "$RC_PATH/fast-syntax-highlighting/current_theme.zsh" cp "$RC_PATH/fsh_theme.zsh" "$RC_PATH/fast-syntax-highlighting/current_theme.zsh"
@ -34,6 +36,10 @@ do
fi fi
done done
mkdir -p $XDG_CONFIG_HOME mkdir -p "$XDG_CONFIG_HOME"
find $RC_PATH/$CONF_DIR -mindepth 1 -maxdepth 1 -type d \ mkdir -p "$XDG_DATA_HOME"
-exec sh -c "ln -s -t \"$XDG_CONFIG_HOME\" \"{}\" 2> /dev/null || ( link=$XDG_CONFIG_HOME/"'$(basename "{}")'"; test -L "'$link'" || >&2 echo \"Folder "'$link'" exists. Keeping old version.\")" \; # https://github.com/koalaman/shellcheck/wiki/SC2156
find "$RC_PATH/$CONF_DIR" -mindepth 1 -maxdepth 1 -type d \
-exec sh -c 'ln -s -t "$1" "$2" 2> /dev/null || ( link="$1/$(basename "$2")"; test -L "$link" || >&2 echo "Folder $link exists. Keeping old version.")' _ "$XDG_CONFIG_HOME" '{}' \;
find "$RC_PATH/$DATA_DIR" -mindepth 1 -maxdepth 1 -type d \
-exec sh -c 'ln -s -t "$1" "$2" 2> /dev/null || ( link="$1/$(basename "$2")"; test -L "$link" || >&2 echo "Folder $link exists. Keeping old version.")' _ "$XDG_DATA_HOME" '{}' \;

Loading…
Cancel
Save