1
0
mirror of https://github.com/Z4nzu/hackingtool.git synced 2025-06-20 06:15:54 +02:00

Merge pull request #355 from mit0za/remove-yay-and-fix-script-for-arch

Remove yay and fix script for arch
This commit is contained in:
Hardik Zinzuvadiya
2023-03-14 05:16:54 -04:00
committed by GitHub

9
install.sh Normal file → Executable file
View File

@ -71,7 +71,7 @@ if [[ $choice =~ ^[1-2]+$ ]]; then
sudo apt-get install -y git python3-pip figlet boxes php curl xdotool wget -y ; sudo apt-get install -y git python3-pip figlet boxes php curl xdotool wget -y ;
elif [[ $choice == 2 ]]; then elif [[ $choice == 2 ]]; then
sudo pacman -Suy -y sudo pacman -Suy -y
sudo pacman -S python-pip-19.1.1-1 yay -y sudo pacman -S python-pip -y
else else
exit exit
fi fi
@ -93,7 +93,11 @@ if [[ $choice =~ ^[1-2]+$ ]]; then
if sudo git clone https://github.com/Z4nzu/hackingtool.git $install_dir; then if sudo git clone https://github.com/Z4nzu/hackingtool.git $install_dir; then
# Install virtual environment # Install virtual environment
echo -e "${YELLOW}[*] Installing Virtual Environment...${NC}" echo -e "${YELLOW}[*] Installing Virtual Environment...${NC}"
if [[ $choice == 1 ]]; then
sudo apt install python3-venv -y sudo apt install python3-venv -y
elif [[ $choice == 2 ]]; then
echo "Python 3.3+ comes with a module called venv.";
fi
echo ""; echo "";
# Create a virtual environment for the tool # Create a virtual environment for the tool
echo -e "${YELLOW}[*] Creating virtual environment..." echo -e "${YELLOW}[*] Creating virtual environment..."
@ -108,7 +112,8 @@ if [[ $choice =~ ^[1-2]+$ ]]; then
sudo apt install figlet -y sudo apt install figlet -y
elif [[ $choice == 2 ]]; then elif [[ $choice == 2 ]]; then
pip3 install -r $install_dir/requirements.txt pip3 install -r $install_dir/requirements.txt
yay -S boxes --noconfirm sudo -u $SUDO_USER git clone https://aur.archlinux.org/boxes.git && cd boxes
sudo -u $SUDO_USER makepkg -si
sudo pacman -S figlet -y sudo pacman -S figlet -y
fi fi
# Create a shell script to launch the tool # Create a shell script to launch the tool