From 8af0713c35746d53b358145a655226a57c55c380 Mon Sep 17 00:00:00 2001 From: Raphael Roberts Date: Thu, 4 Apr 2019 10:50:34 -0500 Subject: [PATCH] made toast short --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)