mirror of
https://tildegit.org/hyperreal/dotfiles-hyperreal.git
synced 2026-03-09 12:18:12 +01:00
10 lines
360 B
Bash
Executable file
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
|