nixos/install.sh

21 lines
500 B
Bash
Raw Normal View History

#! /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)"
2023-01-10 10:30:42 +00:00
if [ ! -e "$CONFIG_DIR/$FILENAME" ]
then
2023-01-10 08:11:27 +00:00
ln -s $(readlink -f "$FILE") "$CONFIG_DIR/$FILENAME"
2023-01-10 10:30:42 +00:00
echo "$(readlink -f $FILE) -> $CONFIG_DIR/$FILENAME"
else
echo "$CONFIG_DIR/$FILENAME already exists"
fi
done
2023-01-10 10:30:42 +00:00
# nvim setup
./config/nvim/install.sh