12 lines
249 B
Bash
12 lines
249 B
Bash
#!/bin/bash
|
|
#
|
|
# After running this script:
|
|
# 1. git dotfiles are symlinked
|
|
#
|
|
|
|
# 1. git dotfiles are symlinked
|
|
readonly git_source="$dotfiles_dir/git/*"
|
|
readonly git_target="$HOME"
|
|
link_folder $git_source $git_target
|
|
printf "git dotfiles linked\n"
|