- Rename desktop launcher, window titles, About, and User-Agents - Point QSettings at DazedTL with one-time migration from legacy app key - Update README, Guide, skills, and launcher/script copy BREAKING CHANGE: QSettings and desktop id now use DazedTL (legacy keys migrated once)
13 lines
387 B
Bash
13 lines
387 B
Bash
#!/usr/bin/env bash
|
|
# Launcher for DazedTL.desktop (finds venv, then starts the GUI).
|
|
ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
cd "$ROOT" || exit 1
|
|
|
|
PYTHON="python3"
|
|
if [[ -x "$ROOT/.venv/bin/python" ]]; then
|
|
PYTHON="$ROOT/.venv/bin/python"
|
|
elif [[ -x "$ROOT/venv/bin/python" ]]; then
|
|
PYTHON="$ROOT/venv/bin/python"
|
|
fi
|
|
|
|
exec "$PYTHON" "$ROOT/scripts/start_gui.py"
|