9 lines
174 B
Bash
Executable File
9 lines
174 B
Bash
Executable File
#!/bin/bash -ex
|
|
cd "$(dirname "$0")"
|
|
. ./config
|
|
. ./src/lib.sh
|
|
|
|
cat src/dotfiles.sh | arch-chroot /mnt/ su "$username" -c 'bash -ex'
|
|
|
|
echo -e "${BOLD}${GREEN}DONE.${NORMAL}"
|