firts commit

This commit is contained in:
nothing 2023-12-07 19:35:00 +03:00
parent d4249a2640
commit 42f18cd741
5 changed files with 37 additions and 5 deletions

View File

@ -1 +1 @@
nano flatpak ssh
nano flatpak ssh zsh

View File

@ -1,3 +0,0 @@
#!/bin/bash
sudo apt install $(cat home.txt)
sudo apt install $(cat work.txt)

2
setup/pkgs-install.sh Normal file
View File

@ -0,0 +1,2 @@
#!/bin/bash
sudo apt install $(cat home.txt) -y && sudo apt install $(cat work.txt) -y

View File

@ -1 +1 @@
vagrant lnav ranger docker docker-compose
vagrant lnav ranger docker docker-compose vim

33
start.sh Normal file
View File

@ -0,0 +1,33 @@
#!/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