about summary refs log tree commit diff
path: root/configs/setup
blob: e81b49442f423be6e1621ec71c71aded1aa747cc (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
40
41
42
43
44
45
46
47
#!/usr/bin/env bash

dotfiles_path="${HOME}/dotfiles"
configs_dir="${dotfiles_path}/configs"
shared_configs="${configs_dir}/shared"

if [[  $(uname) == 'Darwin' ]]; then
    os_specific_configs="${configs_dir}/os_x"
elif [[ $(uname) == 'Linux' ]]; then
    os_specific_configs="${configs_dir}/linux"
fi


function symlink_configs () {
    configs_dir=$1

    for cf in $(find $configs_dir -type f -name ".*"); do
        filename=$(grep -o "[^\/]+$" <<<$cf)
        echo "$filename: "

        if [ -f "${HOME}/${filename}" ] && [ ! -L "${HOME}/${filename}" ]; then
            echo -n "Backing up ${filename}... " && \
            mv "${HOME}/${filename}" "${HOME}/${filename}.bak" && \
            echo "Done."
        fi

        if [ -L "${HOME}/${filename}" ]; then
            if [ $(readlink "${HOME}/${filename}") = $cf ]; then
                echo "Already properly symlinked to ${configs_dir}."
            else
                echo "Already symlinked but NOT to the proper location. Aborting..."
            fi
        else
            echo -n "Symlinking to ${filename}... " && \
            ln -s $cf "${HOME}/${filename}" && \
            echo "Done."
        fi
        echo ""
    done
}


# handle shared configs
symlink_configs $shared_configs

# handle os-specific configs
symlink_configs $os_specific_configs