11 lines
432 B
Bash
11 lines
432 B
Bash
#!/bin/bash
|
|
sudo apt-get update && sudo apt-get upgrade -y
|
|
sudo apt install -y python3
|
|
#sudo apt install -y python-pigpio
|
|
sudo apt install -y pigpio python3-pigpio git
|
|
git clone https://gitea.fortis-scientia.com/RomanNum3ral/x735-v2.5
|
|
cd x735-v2.5
|
|
sudo chmod +X *.sh
|
|
sudo bash install.sh
|
|
sudo -u anon echo "alias off='sudo x735softsd.sh'" >> ~/.bashrc
|
|
sudo -u anon echo "python /home/anon/x735-v2.5/pwm_fan_control.py&" >> ~/.bashrc |