mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 06:12:34 +00:00
19 lines
313 B
Bash
Executable File
19 lines
313 B
Bash
Executable File
#!/bin/sh
|
|
|
|
config="${HOME}/.config"
|
|
|
|
_make_dirs() {
|
|
test ! -d "${config}" && mkdir "${config}"
|
|
}
|
|
|
|
_remove_git() {
|
|
test -d "${config}/git" && rm "${config}/git"
|
|
}
|
|
|
|
_link_git() {
|
|
ln -sfv "${PWD}/git" "${config}"
|
|
}
|
|
|
|
#------------------------------- main -------------------------------
|
|
_make_dirs && _link_git
|