-
Notifications
You must be signed in to change notification settings - Fork 1
/
install-local.sh
executable file
·41 lines (31 loc) · 1.28 KB
/
install-local.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env bash
BASEDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
lightblue='\e[94m'
purple='\e[35m'
lightpurple='\e[95m'
reset='\e[0m'
# Init .local files
while IFS= read -r -d '' filePath
do
srcFileName=$(basename "$filePath")
dstFilePath="${BASEDIR}/${srcFileName%.example}"
dstFilePathName="${dstFilePath/#${HOME}/'~'}"
if [[ ! -f "$dstFilePath" ]]; then
echo -e "${lightblue} Creating file ${dstFilePathName}${reset}"
cp "$filePath" "$dstFilePath"
else
echo -e "${lightblue} File exists ${dstFilePathName}${reset}"
fi
done < <(find "$BASEDIR/" -iname "*.local.example" -print0)
# Init Git-Fork custom commands link (for easier editing comparing to .example)
[[ -x $(command -v powershell.exe) ]] && {
winUser=$(powershell.exe '$env:UserName' | tr -d '\r\n')
src="/mnt/c/Users/${winUser}/AppData/Local/Fork/custom-commands.json"
dst="${HOME}/.dotfiles/.config/Fork/custom-commands.json"
srcName=${src/#"/mnt/c/Users/${winUser}/AppData/Local"/'%localappdata%'}
dstName=${dst/#${HOME}/'~'}
[[ -f "$src" ]] && {
echo -e "${lightblue} Linking ${dstName} -> ${srcName}${reset}"
ln -sf "$src" "$dst"
} || echo -e " ${lightpurple}${srcName} not found${reset}"
} || echo -e " ${lightpurple}powershell.exe not executable${reset}"