Update dotfiles/.local/bin/install-dotfiles
This commit is contained in:
parent
c1fb0b3326
commit
4dccace063
1 changed files with 7 additions and 7 deletions
|
@ -13,20 +13,20 @@ if [ -f '/etc/qubes-release' ]; then
|
||||||
qvm-run --pass-io dom-dotfiles "cat dotfiles.tar.gz" > "$HOME/dotfiles.tar.gz"
|
qvm-run --pass-io dom-dotfiles "cat dotfiles.tar.gz" > "$HOME/dotfiles.tar.gz"
|
||||||
tar -xzf "$HOME/dotfiles.tar.gz" -C "$HOME"
|
tar -xzf "$HOME/dotfiles.tar.gz" -C "$HOME"
|
||||||
rm -f "$HOME/dotfiles.tar.gz"
|
rm -f "$HOME/dotfiles.tar.gz"
|
||||||
sudo rm -rf /usr/src/dotfiles
|
sudo rm -rf /usr/src/professor-dotfiles
|
||||||
sudo cp -rf "$HOME/dotfiles" /usr/src/dotfiles
|
sudo cp -rf "$HOME/dotfiles-master/dotfiles" /usr/src/professor-dotfiles
|
||||||
|
|
||||||
# Delete DispVM
|
# Delete DispVM
|
||||||
qvm-shutdown --force dom-dotfiles &> /dev/null || EXIT_CODE=$?
|
qvm-shutdown --force dom-dotfiles &> /dev/null || EXIT_CODE=$?
|
||||||
sleep 1
|
sleep 1
|
||||||
qvm-remove --force dom-dotfiles &> /dev/null || EXIT_CODE=$?
|
qvm-remove --force dom-dotfiles &> /dev/null || EXIT_CODE=$?
|
||||||
else
|
else
|
||||||
if [ -d /usr/src/dotfiles/.git ]; then
|
if [ -d /usr/src/professor-dotfiles/.git ]; then
|
||||||
cd /usr/src/dotfiles
|
cd /usr/src/professor-dotfiles
|
||||||
git pull origin master
|
git pull origin master
|
||||||
cd ~/
|
cd ~/
|
||||||
else
|
else
|
||||||
sudo git clone https://gitlab.com/megabyte-labs/dotfiles.git /usr/src/dotfiles
|
sudo git clone https://gitlab.com/megabyte-labs/dotfiles.git /usr/src/professor-dotfiles
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -34,14 +34,14 @@ fi
|
||||||
while read DOTFILE_FOLDER; do
|
while read DOTFILE_FOLDER; do
|
||||||
BASENAME_FOLDER="$(basename "$DOTFILE_FOLDER")"
|
BASENAME_FOLDER="$(basename "$DOTFILE_FOLDER")"
|
||||||
cp -rf "$DOTFILE_FOLDER/" "$HOME/$BASENAME_FOLDER"
|
cp -rf "$DOTFILE_FOLDER/" "$HOME/$BASENAME_FOLDER"
|
||||||
done < <(find /usr/src/dotfiles/dotfiles -type d -maxdepth 1)
|
done < <(find /usr/src/professor-dotfiles/dotfiles -type d -maxdepth 1)
|
||||||
|
|
||||||
# Copy dotfile files
|
# Copy dotfile files
|
||||||
while read DOTFILE_FILE; do
|
while read DOTFILE_FILE; do
|
||||||
BASENAME_FILE="$(basename "$DOTFILE_FILE")"
|
BASENAME_FILE="$(basename "$DOTFILE_FILE")"
|
||||||
cp "$DOTFILE_FILE" "$HOME/$BASENAME_FILE"
|
cp "$DOTFILE_FILE" "$HOME/$BASENAME_FILE"
|
||||||
chmod 600 "$HOME/$BASENAME_FILE"
|
chmod 600 "$HOME/$BASENAME_FILE"
|
||||||
done < <(find /usr/src/dotfiles/dotfiles -type f -maxdepth 1)
|
done < <(find /usr/src/professor-dotfiles/dotfiles -type f -maxdepth 1)
|
||||||
|
|
||||||
# Ensure .local/bin contents are executable
|
# Ensure .local/bin contents are executable
|
||||||
while read LOCAL_BIN; do
|
while read LOCAL_BIN; do
|
||||||
|
|
Loading…
Reference in a new issue