blob: e1a742c4b199745ea8a8b7deae21254ce3cc6e7b (
plain) (
blame)
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
|
#!/usr/bin/env bash
# .zsh_profile
if [ -f "$HOME"/.zsh_profile ] && [ ! -L "$HOME"/.zsh_profile ]; then
# backup .zsh_profile
echo -n "Backing up .zsh_profile ... " && \
mv "$HOME"/.zsh_profile "$HOME"/.zsh_profile.bak && \
echo "Done."
fi
if [ -L "$HOME"/.zsh_profile ]; then
# TODO: make sure that .zsh_profile is symlinked to the correct location.
echo ".zsh_profile is already symlinked."
else
# create symlink to pc_settings .zsh_profile
echo -n "Symlinking to pc_settings/configs/.zsh_profile ... " && \
ln -s "$HOME"/pc_settings/configs/.zsh_profile "$HOME"/.zsh_profile && \
echo "Done."
fi
# backup .tmux.conf
if [ -f "$HOME"/.tmux.conf ] && [ ! -L "$HOME"/.tmux.conf ]; then
echo -n "Backing up .tmux.conf ... " && \
mv "$HOME"/.tmux.conf "$HOME"/.tmux.conf.bak && \
echo "Done."
fi
if [ -L "$HOME"/.tmux.conf ]; then
# TODO: make sure that .tmux.conf is symlinked to the correct location.
echo ".tmux.conf is already symlinked."
else
# create symlink to pc_settings .tmux.conf
echo -n "Symlinking to pc_settings/configs/.tmux.conf ... " && \
ln -s "$HOME"/pc_settings/configs/.tmux.conf "$HOME"/.tmux.conf && \
echo "Done."
fi
|