dotfiles/install.sh

27 lines
469 B
Bash
Raw Normal View History

2019-07-18 16:45:46 +00:00
#!/usr/bin/env bash
cd $(dirname $0)
echo "Installing dot files..."
rsync --exclude "dconf/" \
--exclude ".vscode/" \
--exclude "install.sh" \
--exclude "LICENSE" \
--exclude "README.md" \
-hla --no-perms . ~
echo ""
if which dconf >/dev/null 2>&1; then
echo -e "[INFO] Loading tilix config..."
dconf load /com/gexperts/Tilix/ < dconf/tilix.ini
else
echo "[WARNING] dconf command not found"
fi
echo ""
cd - > /dev/null