mirror of
https://gitlab.com/mlunax/dotfiles.git
synced 2025-04-04 18:20:18 +00:00
9 lines
259 B
Bash
Executable file
9 lines
259 B
Bash
Executable file
#!/bin/zsh
|
|
|
|
find "$(dirname "$(basename $0)")"/config -type f | while read -r file; do
|
|
cp ${file/.\/config/$HOME\/.config} $file
|
|
done
|
|
|
|
find "$(dirname "$(basename $0)")"/bin -type f | while read -r file; do
|
|
cp ${file/.\/bin/$HOME\/.local\/bin} $file
|
|
done
|