We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hey, thanks for this great script! I wanted to share my lazy way to get sound notifications for those people who might be interested in✌
with open(os.devnull, 'wb') as devnull: try: subprocess.check_call( notify_cmd, stderr=subprocess.STDOUT, stdout=devnull, ) subprocess.check_call( ['aplay', '/path/to/sound/file.wav'], stderr=subprocess.STDOUT, stdout=devnull, )
The text was updated successfully, but these errors were encountered:
Thank you. Maybe I will add support for something like this into the script.
Sorry, something went wrong.
Wogh! I can't wait! ☺️☺️☺️
No branches or pull requests
Hey, thanks for this great script!
I wanted to share my lazy way to get sound notifications for those people who might be interested in✌
The text was updated successfully, but these errors were encountered: