diff options
author | Galen Guyer <galen@galenguyer.com> | 2022-11-28 11:26:59 -0500 |
---|---|---|
committer | Galen Guyer <galen@galenguyer.com> | 2022-11-28 11:26:59 -0500 |
commit | 439d249e42ddba594115411a4eafc6140cf46dfc (patch) | |
tree | 2f0df685bc997b9001ea25a6cc1f4969e7f2ec17 /modules/40-neofetch/install.sh | |
parent | 0752767c04a7816f5818987568d6ac5aaa810fc0 (diff) |
Use soft links instead of hard links
Diffstat (limited to 'modules/40-neofetch/install.sh')
-rw-r--r-- | modules/40-neofetch/install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/40-neofetch/install.sh b/modules/40-neofetch/install.sh index 39ef2f2..bd1e900 100644 --- a/modules/40-neofetch/install.sh +++ b/modules/40-neofetch/install.sh @@ -20,5 +20,5 @@ function install() { log info "linking neofetch config" mkdir -p "$HOME/.config/neofetch" - ln -f "$_scriptdir/config.conf" "$HOME/.config/neofetch/config.conf" + ln -sf "$_scriptdir/config.conf" "$HOME/.config/neofetch/config.conf" } |