mirror of
https://github.com/yusufipk/deste-hearthstone-linux-tracker.git
synced 2026-09-11 10:46:12 +00:00
Reads the game's own Power.log: no screen capture, no image recognition, no memory reading. - deck tracking (remaining cards, draw chance, played cards fade in place) - opponent panel (revealed cards, hand and deck counts) - decks read from the game's offline cache, matched to the match - card art in rows, full card on hover - overlay and window modes, adjustable transparency, tray icon - English and Turkish interface - consistency tests over a real log corpus, cross-checked against Zone.log
6 lines
181 B
Bash
Executable File
6 lines
181 B
Bash
Executable File
#!/usr/bin/env bash
|
||
# deste'yi kendi dizininden başlatır. Masaüstü kısayolu bunu çağırır.
|
||
set -euo pipefail
|
||
cd "$(dirname "$(readlink -f "$0")")"
|
||
exec python3 main.py "$@"
|