diff --git a/ctabus/__init__.py b/ctabus/__init__.py index 61ea918..627f077 100644 --- a/ctabus/__init__.py +++ b/ctabus/__init__.py @@ -40,7 +40,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) diff --git a/setup.py b/setup.py index 82358d2..48782f3 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open('requirements.txt') as file: setup( name='ctabus', - version='2.1.1', + version='2.1.2', description='Python package for tracking cta bus times', install_requires=INSTALL_REQUIRES, author='rlbr',