dotfiles-hyperreal/install.sh
2025-12-29 23:43:11 +01:00

10 lines
360 B
Bash
Executable file

#!/usr/bin/env sh
set -euo pipefail
DOTFILES_DIR="${HOME}/dotfiles"
find "${DOTFILES_DIR}/config" -maxdepth 1 -mindepth 1 -exec ln -sf {} "${HOME}/.config" \;
find "${DOTFILES_DIR}" -maxdepth 1 -mindepth 1 -not -name ".gitignore" -not -name ".git" -not -name "config" -not -name "install.sh" -exec ln -sf {} "${HOME}" \;
# vim: ai et ft=sh sts=4 sw=4 ts=4