10 lines
186 B
Bash
10 lines
186 B
Bash
#!/bin/bash
|
|
if [ "$EUID" -ne 0 ]
|
|
then echo "Please run as root"
|
|
exit
|
|
fi
|
|
|
|
sh /home/preacher/.config/.dotfiles/.install/packages.sh
|
|
echo copping over config
|
|
#cp -rf ./* $HOME/.config/
|