From 17738f5827c2250fc4ea13c6b486ab19ffba15d5 Mon Sep 17 00:00:00 2001 From: Quentin Duchemin Date: Mon, 4 May 2020 18:17:32 +0200 Subject: [PATCH] Screenshot : write in file mandatory by maim 5.6.3 --- .config/i3/scripts/screenshot.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.config/i3/scripts/screenshot.py b/.config/i3/scripts/screenshot.py index 5c3302d..cbcd27e 100755 --- a/.config/i3/scripts/screenshot.py +++ b/.config/i3/scripts/screenshot.py @@ -52,8 +52,10 @@ def read_args(argv): return (upload, save, path) def screenshot(img_format): - proc = subprocess.run(['maim', '-sl', '--color=0.6,0.4,0.2,0.2', '-f', img_format, '-u', '-m', '9', '-b', '5'], capture_output=True, check=True) - return proc.stdout + output = '/tmp/screenshot' + proc = subprocess.run(['maim', '-sl', '--color=0.6,0.4,0.2,0.2', '-f', img_format, '-u', '-m', '9', '-b', '5', output], check=True) + with open(output) as f: + return f.read() def save_img(path, img, img_format): # Create directory if needed