Archived
0
0
This repository has been archived on 2026-01-04. You can view files and clone it, but cannot push or open issues or pull requests.
Files
HeurAMS-legacy/.playsound.py

5 lines
96 B
Python

# for Android/Termux
import os
def playsound(p):
os.system(f"play-audio '{p}'")
print(p)