-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.sh
executable file
·142 lines (121 loc) · 4.02 KB
/
setup.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
#!/bin/bash
function make_link() {
local source_file="$1"
local target_file="$2"
local valid_choice="N"
# Check if the target already exists
if [ -e "$target_file" ]; then
until [ $valid_choice = "Y" ]; do
# Prompt the user to replace
read -p "$target_file already exists. Replace with symlink to $source_file? (y)es, (n)o or (a)bort [enter = no]: " replace_target
[ -z "$replace_target" ] && replace_target="N"
case "$replace_target" in
[yY])
# User opted to replace, so remove the existing target
rm -rf "$target_file"
valid_choice="Y"
;;
[nN])
# User declined to replace, so take no action and return
echo "Leaving $target_file untouched."
return
valid_choice="Y"
;;
[aA])
# User aborted
echo "Leaving $target_file untouched. Aborting."
valid_choice="Y"
exit 1
;;
esac
done
fi
# Create the symlink
echo "Linking $source_file -> $target_file"
ln -s "$source_file" "$target_file"
}
# Default mode is to install (i), unless -u option passed
MODE="i"
while getopts 'u' OPTION; do
case $OPTION in
u) MODE="u"
;;
esac
done
# Get the name of this script
THIS_SCRIPT=`basename "$0"`
# Change to the script directory
cd `dirname "$0"`
# Iterate down a (possible) chain of symlinks
while [ -L "$THIS_SCRIPT" ]
do
THIS_SCRIPT=`readlink $THIS_SCRIPT`
cd `dirname $THIS_SCRIPT`
THIS_SCRIPT=`basename $THIS_SCRIPT`
done
# Canonicalize the physical path
SCRIPT_DIR=`pwd -P`
if [ $MODE = "i" ]; then
# Make the topics available at ~/.dotfiles
DOTFILES_DIR=~/.dotfiles
eval DOTFILES_DIR="$DOTFILES_DIR" # expand to full path
# If we're not already in ~/.dotfiles
if [ "$SCRIPT_DIR" != "$DOTFILES_DIR" ]; then
make_link $SCRIPT_DIR $DOTFILES_DIR
fi
# Symlink all {name}.symlink files in topics to ~/.{name}
for symlink_file in $SCRIPT_DIR/**/*.symlink
do
symlink_basename=`basename $symlink_file`
symlink_basename=~/.${symlink_basename%.symlink}
make_link $symlink_file $symlink_basename
done
# Special case symlink for vscode files
VSCODE_DIR="~/Library/Application\ Support/Code/User"
eval VSCODE_DIR="$VSCODE_DIR" # expand to full path
if [ -d "$VSCODE_DIR" ]; then
make_link $SCRIPT_DIR/vscode/projects.json "$VSCODE_DIR/projects.json"
make_link $SCRIPT_DIR/vscode/settings.json "$VSCODE_DIR/settings.json"
make_link $SCRIPT_DIR/vscode/snippets "$VSCODE_DIR/snippets"
fi
# Special case symlink for Maven settings
M2_DIR="~/.m2"
eval M2_DIR="$M2_DIR" # expand to full path
if [ -d "$M2_DIR" ]; then
make_link $SCRIPT_DIR/maven/settings.xml "$M2_DIR/settings.xml"
fi
# Copy all {name}.launchagent files in topics to ~/Library/LaunchAgents/{name}.plist
for launchagent_file in $SCRIPT_DIR/**/*.launchagent
do
launchagent_basename=`basename $launchagent_file`
launchagent_basename=~/Library/LaunchAgents/${launchagent_basename%.launchagent}.plist
cp $launchagent_file $launchagent_basename
done
if [ -d ~/.kde/share/apps/konsole ]; then
echo "KDE detected, symlinking Konsole Solarized"
ln -s $SCRIPT_DIR/konsole-colors-solarized/Solarized\ Dark.colorscheme ~/.kde/share/apps/konsole/Solarized\ Dark.colorscheme
ln -s $SCRIPT_DIR/konsole-colors-solarized/Solarized\ Light.colorscheme ~/.kde/share/apps/konsole/Solarized\ Light.colorscheme
fi
if [ -d ~/.gconf/apps/gnome-terminal/profiles ]; then
echo "Gnome detected, configuring Gnome Terminal Solarized"
cd $SCRIPT_DIR/gnome-terminal-colors-solarized
./install.sh
fi
else
# Remove any symlinks to the script directory
symlinks=`ls -lah ~ | grep "^l.*->\ $SCRIPT_DIR" | awk '{print $9}'`
for symlink_file in $symlinks; do
echo "Unlinking $symlink_file"
rm $symlink_file
done
if [ -d ~/.kde/share/apps/konsole ]; then
echo "KDE detected, removing symlink for Konsole Solarized"
rm ~/.kde/share/apps/konsole/Solarized\ Dark.colorscheme
rm ~/.kde/share/apps/konsole/Solarized\ Light.colorscheme
fi
if [ -d ~/.gconf/apps/gnome-terminal/profiles ]; then
echo "Gnome detected, sorry no uninstall option for Gnome Terminal Solarized"
fi
fi
echo "Done"
exit