aboutsummaryrefslogtreecommitdiff
path: root/read_manga.py
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2021-04-26 19:06:12 +0200
committerdec05eba <dec05eba@protonmail.com>2021-04-26 19:06:12 +0200
commit2ea39b359ac53912c7a1c748e2f04aa1a6336f1f (patch)
tree27d366906d53eb6661b83ab09a4a4a440e809a03 /read_manga.py
parent0c49bfeeefc0b63c2a486948460435c66a36faf9 (diff)
misc, dont show notification for too long
Diffstat (limited to 'read_manga.py')
-rwxr-xr-xread_manga.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/read_manga.py b/read_manga.py
index f6f2dc7..4ad25c7 100755
--- a/read_manga.py
+++ b/read_manga.py
@@ -77,5 +77,5 @@ for chapter in chapters_by_oldest[start_index:]:
images_str.append(os.path.join(image_dir, image))
index += 1
-process = subprocess.Popen(["sxiv", "-i", "-f"], stdin=subprocess.PIPE)
+process = subprocess.Popen(["sxiv", "-a", "-i", "-f"], stdin=subprocess.PIPE)
process.communicate("\n".join(images_str).encode())