From d6289c47ba57baea39c0b5312d6b513abfc851c9 Mon Sep 17 00:00:00 2001 From: Joe Groocock Date: Wed, 24 Apr 2019 10:42:05 +0100 Subject: [PATCH] scripts/screenshot: fix putting capture in clipboard --- scripts/screenshot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/screenshot b/scripts/screenshot index 27b4ff5..275efa6 100755 --- a/scripts/screenshot +++ b/scripts/screenshot @@ -40,7 +40,7 @@ fi notif_id=$(send_notification "Screenshot uploading" "$FILENAME

The image is available in the clipboard immediately" || true) # Add image to clipboard -xclip -i "$out_path" -selection primary -t image/png +xclip -i "$out_path" -selection clipboard -t image/png # 'Upload' the screenshot if ! error=$(scp -C $out_path $SCP_HOST:$SCP_PATH 2>&1); then