forked from matthewmccullough/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_setupi3.zsh
executable file
·46 lines (34 loc) · 1.03 KB
/
_setupi3.zsh
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
#!/bin/zsh
export UNLINK=true
function symlinkifne {
echo "WORKING ON: $1"
# does it exist
if [[ -a $1 ]]; then
echo " WARNING: $1 already exists."
# If Unlink is requested
if [ "$UNLINK" = "true" ]; then
unlink $1
echo " Unlinking $1"
# create the link
export DOTLESS=`echo $1 | sed s/.//`
echo " Symlinking $DOTFILESDIRRELATIVETOHOME/$DOTLESS to $1"
ln -s $DOTFILESDIRRELATIVETOHOME/$DOTLESS $1
else
echo " SKIPPING $1."
fi
# does not exist
else
# create the link
export DOTLESS=`echo $1 | sed s/.//`
echo " Symlinking $DOTFILESDIRRELATIVETOHOME/$DOTLESS to $1"
ln -s $DOTFILESDIRRELATIVETOHOME/$DOTLESS $1
fi
}
echo "This script must be run from the dotfiles directory"
echo "Setting up..."
#export DOTFILESDIRRELATIVETOHOME=$PWD
export DOTFILESDIRRELATIVETOHOME=.dotfiles
echo "DOTFILESDIRRELATIVETOHOME = $DOTFILESDIRRELATIVETOHOME"
pushd ~
symlinkifne .i3
popd