mirror of
https://github.com/ivabus/dotfiles
synced 2024-11-10 02:05:16 +03:00
11 lines
161 B
Bash
Executable file
11 lines
161 B
Bash
Executable file
#!/bin/sh
|
|
|
|
echo "Reinstalling dotfiles"
|
|
echo "To proceed press enter"
|
|
read A
|
|
|
|
cd $HOME
|
|
|
|
rm -rf $HOME/.dotfiles
|
|
sh -c "$(curl -fsSL https://ivabus.dev/dotfiles)"
|