mirror of
https://github.com/ivabus/dotfiles
synced 2024-11-10 02:05:16 +03:00
12 lines
225 B
Bash
12 lines
225 B
Bash
#!/bin/sh
|
|
|
|
GREEN="\033[32m"
|
|
RED="\033[31m"
|
|
CLEAR_COLOR="\033[0m"
|
|
|
|
echo "${RED}Reinstalling dotfiles${CLEAR_COLOR}"
|
|
echo "To proceed press enter"
|
|
read A
|
|
|
|
rm -rf $HOME/.dotfiles
|
|
sh -c "$(curl -fsSL https://ivabus.dev/dotfiles)" |