diff --git a/main.py b/main.py index 19aa78d..f02c16d 100755 --- a/main.py +++ b/main.py @@ -23,7 +23,7 @@ def toast(text): read, write = os.pipe() os.write(write, text.encode()) os.close(write) - subprocess.Popen(["termux-toast", "-g", "top", "-c", "white", "-b", "black"], + subprocess.Popen(["termux-toast", "-s", "-g", "top", "-c", "white", "-b", "black"], stdin=read)