Auto Update
This commit is contained in:
parent
48b27eed0c
commit
5d58dc8538
2 changed files with 13 additions and 3 deletions
9
setenv.sh
Normal file
9
setenv.sh
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# Show env vars
|
||||||
|
grep -v '^#' .env
|
||||||
|
|
||||||
|
# Export env vars
|
||||||
|
set -o allexport
|
||||||
|
source .env
|
||||||
|
set +o allexport
|
7
setup.sh
7
setup.sh
|
@ -10,14 +10,15 @@ cp .profile /root
|
||||||
|
|
||||||
cat << EOF >> /root/.bashrc
|
cat << EOF >> /root/.bashrc
|
||||||
|
|
||||||
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;31m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
|
PS1='\[\033[01;31m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]$ '
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
ln ./nanorc /etc/nanorc
|
ln ./nanorc /etc/nanorc
|
||||||
|
|
||||||
if [ "$1" != "" ] ; then
|
if [ -f ~/git/dotfiles/.env ] ; then
|
||||||
|
source ./setenv.sh
|
||||||
rm /etc/sudoers.d/user
|
rm /etc/sudoers.d/user
|
||||||
echo "$1 ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers.d/user
|
echo "$USER ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers.d/user
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "Install fzf, log out and log back in"
|
echo "Install fzf, log out and log back in"
|
||||||
|
|
Loading…
Reference in a new issue