# repo https address for cloning & pushing (empty for local backup)
REPO="https://github.com/creio/dots"

# branch, defaults to current branch (HEAD)
BRANCH="master"

# location where backup folder or repo will be created or cloned
BASE_DIR="/home/st/files/mega/dots"

# names for storage directories within BASE_DIR.
# created only if needed, stores files from below arrays
USER_DIR=""
ROOT_DIR="root"

# file paths which will be backed up into the directories above
USER_PATHS=(
".bin"
".ncmpcpp"
".themes"
".config/cherrytree"
".config/clipit"
".config/fontconfig"
".config/gtk-2.0"
".config/gtk-3.0"
".config/htop"
".config/mpd"
".config/mpv"
".config/neofetch"
".config/qt5ct"
".config/ranger"
".config/rofi"
".config/streamlink"
".config/youtube-viewer"
".config/Trolltech.conf"
".config/user-dirs.dirs"
".config/user-dirs.locale"
".zshrc"
".alias_zsh"
".dotsrc"
".xinitrc"
".Xresources"
".xsettingsd"
".pam_environment"
)

ROOT_PATHS=(
"/etc/fstab"
"/etc/pacman.conf"
"/etc/environment"
"/etc/vconsole.conf"
)
