Files
Meshtastic-Client/LinuxMint/run-client.sh
Knud Schrøder 545a7a19cd Now the scripts will run in currentdir and tkinter is included
Problems on other installations tkinter must be installed on system and this is now included in the installation launcher.
Also building the virtual enviroment here also tkinter is fixed.
New deb version is compiled and also uploaded.

Knud ;O)
Have fun ;O))
2025-12-12 18:21:15 +01:00

17 lines
314 B
Bash

#!/usr/bin/env bash
set -euo pipefail
# Run from the *current directory* (.) so the project can be moved.
PROJECT_DIR="."
cd "$PROJECT_DIR"
# Load env vars from .envrc (if present)
if [[ -f ".envrc" ]]; then
set -a
# shellcheck disable=SC1091
source ".envrc"
set +a
fi
exec python3 meshtastic_client.py