Automating LAN related utilities.
- Python: Ensure Python is installed on your system.
- Libraries: Install python packages that might not be installed bydefault (install requirements.txt)
- Clone the Repository
- Navigate to the directory and install Dependencies
pip install -r requirements.txt
- Create a
.envfile in the same directory as theLiTE.pyfile:
id=f2025XXXX
password=Bits$XXXXX
timeout=10
save_xml=1
on_start=1
- Write a .bat file to run it on startup:
python "<path of LiTE.py>"
Save it in- C:\Users\<user>\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
- Clone the Repository
- Navigate to the directory and create a virtual environment
python3 -m venv venv
source venv/bin/activate- Install Dependencies in the virtual environment
pip install -r requirements.txtDepending on your linux distribution, you might have to seperately install Tkinter.
sudo pacman -Syu tk #Arch / Manjaro
sudo apt install python3-tk #Ubuntu / Debian
sudo dnf install python3-tkinter #Fedora / RedHat- Create a
.envfile in the same directory as theLiTE.pyfile:
id=f2025XXXX
password=Bits$XXXXX
timeout=10
save_xml=1
on_start=1
- Setup an autostart
.desktopfile to launch at login:
mkdir -p ~/.config/autostart
nano ~/.config/autostart/LiTE.desktopWrite this into the .desktop file:
[Desktop Entry]
Type=Application
Name=LiTE
Comment=Launch LiTE
Exec=.../LiTE/venv/bin/python .../LiTE/LiTE.py
X-GNOME-Autostart-enabled=true
Terminal=false
Replace .../ with your actual path and reboot.