12 lines
227 B
Bash
12 lines
227 B
Bash
DEVICE=$1
|
|
USER=$2
|
|
|
|
7z x $1.zip -o./$2/
|
|
|
|
mv ./$2/* /home/$2/
|
|
|
|
chown -R $USER /home/$USER
|
|
chgrp -R $USER /home/$USER
|
|
ln -s /home/$USER/.zshrc ~/.zshrc
|
|
ln -s /home/$USER/.config/neofetch/config.conf ~/.config/neofetch/config.conf
|