This repository has been archived on 2024-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/setup

129 lines
4.2 KiB
Plaintext
Raw Normal View History

2017-02-07 16:16:45 -06:00
#!/usr/bin/env bash
if [[ -z "$XDG_CONFIG_HOME" ]]; then
export XDG_CONFIG_HOME="$HOME/.config"
2017-02-07 16:16:45 -06:00
fi
dfp=$(cd "$(dirname "${BASH_SOURCE[0]}" )/" && pwd)
ALERT_AGREEMENT_FILE="$dfp/.agreed-to-erasing-files.lock"
# Let user know that this script will delete their current configuration and
# that they should read this script before running. We'll use a lock file so
# the user only needs to agree once.
if [ -f "$ALERT_AGREEMENT_FILE" ]; then
# User agreed already - do nothing
echo "Linking..."
2017-02-07 16:16:45 -06:00
else
echo "Running this script may delete existing personal configuration files."
echo "Please view this script's source, fully understand it, and backup any"
echo "files before continuing."
echo "Seriously. Like... entire directories. Just gone."
read -r -p "Are you sure you want to continue? [y/N] " response
response=${response,,} # to lower case
if [[ $response =~ ^(yes|y)$ ]]; then
echo "agreed" > "$ALERT_AGREEMENT_FILE"
else
exit 1
fi
2017-02-07 16:16:45 -06:00
fi
# TODO: make sure we have an even number, here
2017-02-07 16:16:45 -06:00
links=(
# desktop environment files
"$dfp/de/sway_config" "$XDG_CONFIG_HOME/sway/config"
2017-05-05 01:47:33 -05:00
"$dfp/de/bspwmrc" "$XDG_CONFIG_HOME/bspwm/bspwmrc"
"$dfp/de/sxhkdrc" "$XDG_CONFIG_HOME/sxhkd/sxhkdrc"
"$dfp/de/xresources" "$HOME/.Xresources"
"$dfp/de/xinitrc" "$HOME/.xinitrc"
"$dfp/de/xprofile" "$HOME/.xprofile"
"$dfp/de/xmodmap" "$HOME/.xmodmap"
"$dfp/scripts/colors/xresources" "$HOME/.Xresources.colors"
"$dfp/de/compton.conf" "$XDG_CONFIG_HOME/compton.conf"
2017-02-07 16:16:45 -06:00
# shell files
2017-05-05 01:47:33 -05:00
"$dfp/shell/bashrc" "$HOME/.bashrc"
"$dfp/shell/bash_profile" "$HOME/.bash_profile"
"$dfp/shell/tmux.conf" "$HOME/.tmux.conf"
2017-12-21 12:34:02 -06:00
"$dfp/shell/tmux-layouts" "$HOME/.tmux/layouts"
# text editor files
2017-12-21 12:34:02 -06:00
"$dfp/apps/neovim/" "$XDG_CONFIG_HOME/nvim"
"$dfp/apps/neovim/" "$HOME/.vim"
2017-05-05 01:47:33 -05:00
"$dfp/apps/neovim/init.vim" "$HOME/.vimrc"
"$dfp/scripts/colors/vim" "$XDG_CONFIG_HOME/nvim/colors/base16-donokai.vim"
2017-02-08 14:22:10 -06:00
2017-04-03 15:45:21 -05:00
# gtk configuration files
2017-05-05 01:47:33 -05:00
"$dfp/de/gtk2rc" "$HOME/.gtkrc-2.0"
"$dfp/de/gtk2rc" "$HOME/.gtkrc"
2017-07-27 13:00:48 -05:00
"$dfp/de/gtk3settings.ini" "$XDG_CONFIG_HOME/gtk-3.0/settings.ini"
2017-04-03 15:45:21 -05:00
# irc files
2017-05-05 01:47:33 -05:00
"$dfp/apps/irssi/" "$HOME/.irssi"
"$dfp/apps/weechat/" "$HOME/.weechat"
# qutebrowser config files
"$dfp/apps/qutebrowser/qutebrowser.conf" "$XDG_CONFIG_HOME/qutebrowser/qutebrowser.conf"
"$dfp/apps/qutebrowser/keys.conf" "$XDG_CONFIG_HOME/qutebrowser/keys.conf"
2017-04-03 14:38:53 -05:00
2018-08-09 09:40:14 -05:00
# document viewer
"$dfp/apps/zathura/" "$XDG_CONFIG_HOME/zathura"
# terminal emulator
2017-12-21 12:34:02 -06:00
"$dfp/apps/alacritty/" "$XDG_CONFIG_HOME/alacritty"
# rofi config
2017-05-05 01:47:33 -05:00
"$dfp/apps/rofi/config" "$XDG_CONFIG_HOME/rofi/config"
2017-04-03 14:38:53 -05:00
# bar files
2017-05-05 01:47:33 -05:00
"$dfp/de/bar/polybar-config" "$XDG_CONFIG_HOME/polybar/config"
# ranger config
2017-12-21 12:34:02 -06:00
"$dfp/apps/ranger/" "$XDG_CONFIG_HOME/ranger"
2017-12-21 12:18:17 -06:00
# mutt config
"$dfp/apps/mutt/muttrc" "$XDG_CONFIG_HOME/.muttrc"
"$dfp/apps/mutt/muttrc" "$HOME/.muttrc"
2017-07-27 13:00:48 -05:00
# neofetch config
"$dfp/apps/neofetch/config" "$XDG_CONFIG_HOME/neofetch/config"
# git config
2017-05-05 01:47:33 -05:00
"$dfp/apps/git/config" "$HOME/.gitconfig"
# fontconfig
2017-12-21 12:34:02 -06:00
"$dfp/de/fontconfig/" "$XDG_CONFIG_HOME/fontconfig"
# XDG user directories
"$dfp/shell/user-dirs" "$XDG_CONFIG_HOME/user-dirs.dirs"
2017-02-07 16:16:45 -06:00
)
source=""
for i in "${links[@]}"; do
if [ -n "$source" ]; then
if [ -L "$i" ]; then # if symlink exists, delete it
rm -rf "$i"
fi
if [ -f "$i" ]; then # if file exists, delete it
rm -rf "$i"
fi
if [ -d "$i" ]; then # if directory exists, delete it
rm -rf "$i"
fi
# check if the directory that will contain the link exists
DIR_TO_LINK=$(dirname "$i")
if [ -d "$DIR_TO_LINK" ]; then
:
else
mkdir -p "$DIR_TO_LINK"
fi
ln -s "$source" "$i"
echo "Linked $(basename $source) to $i."
source=""
else
source="$i"
fi
2017-02-07 16:16:45 -06:00
done
echo "Done."