34 lines
571 B
Bash
34 lines
571 B
Bash
#!/bin/bash
|
|
|
|
echo -e "What is ur choise?"
|
|
echo -e "1 - install only home apps"
|
|
echo -e "2 - install only work apps"
|
|
echo -e "3 - download and inpack config files in $HOME (.zsh)"
|
|
echo -e "4 - all"
|
|
echo -e "What is ur choise?"
|
|
|
|
read choise
|
|
case "$choise" in
|
|
|
|
1)
|
|
echo -e "Install only home apps"
|
|
;;
|
|
2)
|
|
echo -e "Install only apps for work"
|
|
;;
|
|
3)
|
|
echo -e "Only download conf files in $HOME"
|
|
;;
|
|
4)
|
|
echo -e "Do all! Start!"
|
|
;;
|
|
*)
|
|
echo "ur seriosly!?"
|
|
exit
|
|
;;
|
|
esac
|
|
|
|
|
|
echo -e "Start install pkgs"
|
|
cd setup && bash pkgs-install.sh
|