Visit sound bank like https://pixabay.com/cs/sound-effects and search for "success" and "error" e.g. Two sound file should be stored in the subfolder "./sound". The script expects also ./config.xaml in the current directory to set up configuration.
Using pygetwindow that supports only Windows windows. At this moment no Ubuntu build available.
Only no_gui.py variant works.
pip install -r requirements.txt
python no_gui.py
script for PowerShell to detect exact coordinates on the screen
Add-Type -AssemblyName System.Windows.Forms
while (1) {
$X = [System.Windows.Forms.Cursor]::Position.X
$Y = [System.Windows.Forms.Cursor]::Position.Y
Write-Host -NoNewline ("`rX:{0,6:D} | Y:{1,6:D}" -f $X,$Y)
}