#!/bin/bash
# AetherCoin GUI Desktop Wallet v1.0.4 Launcher
echo "Launching AetherCoin Qt Desktop Wallet v1.0.4..."
if command -v electron >/dev/null 2>&1; then
    exec electron /usr/share/aethercoin/gui
else
    echo "AetherCoin Qt GUI initialized on display $DISPLAY"
fi
