#! /usr/bin/env sh # Install various dotfiles into their proper places # .config files CONFIG_DIR="${XDG_CONFIG_HOME:-$HOME/.config}" mkdir -p "$CONFIG_DIR" for FILE in config/*; do FILENAME="$(basename $FILE)" if [ ! -e "$CONFIG_DIR/$FILENAME" ]; then ls -s $(readlink -f "$FILE") "$CONFIG_DIR/$FILENAME" fi echo "$(readlink -f $FILE) -> $CONFIG_DIR/$FILENAME" done