Compare commits

...

2 Commits

Author SHA1 Message Date
0691b3a326 Added easytether-usb install option 2024-12-14 10:15:18 -08:00
7d651d6281 Added easytether-usb install option 2024-12-14 10:14:18 -08:00

View File

@ -124,6 +124,8 @@ if [[ $inputvpn =~ ^[Yy]$ ]]; then
sudo bash tailscale.sh
source /etc/profile.d/tailscale.sh
sudo tailscale up --operator=deck --ssh
cd ..
rm -rf deck-tailscale
fi
echo ''
@ -163,6 +165,19 @@ if [[ $inputjre =~ ^[Yy]$ ]]; then
sudo rm -r ./install-jdk-on-steam-deck
fi
echo ''
echo "Install easytether-usb ? [y/n]"
read inputeasytether
if [[ $inputeasytether =~ ^[Yy]$ ]]; then
wget http://www.mobile-stream.com/beta/arch/easytether-0.8.9-1-x86_64.pkg.tar.xz
sudo pacman -U easytether-0.8.9-1-x86_64.pkg.tar.xz
wget https://archive.archlinux.org/packages/o/openssl-1.1/openssl-1.1-1.1.1.t-1-x86_64.pkg.tar.zst
tar -xvf openssl-1.1-1.1.1.t-1-x86_64.pkg.tar.zst
sudo cp usr/lib/libcrypto.so.1.1 /usr/lib/
sudo cp usr/lib/libssl.so.1.1 /usr/lib/
sudo rm -rf usr easytether-0.8.9-1-x86_64.pkg.tar.xz openssl-1.1-1.1.1.t-1-x86_64.pkg.tar.zst
fi
echo ''
echo "Install Oh My Zsh shell ? [y/n]"
read inputohmyzsh
@ -199,6 +214,7 @@ alias pmupd='sudo pacman -Sy'
alias pmupg='sudo pacman -Syyu'
alias pmlst='sudo pacman -Q'
alias pmlstin='sudo pacman -Qe'
alias pmpkgins='sudo pacman -U'
alias browser='lynx https://search.1ndev.com/'
alias androidscreen="scrcpy -w"