From 349959a28e102403297855df8fcb22a2f0f2dfd5 Mon Sep 17 00:00:00 2001 From: Raizo62 Date: Tue, 19 Jan 2021 16:24:56 +0100 Subject: [PATCH 1/2] scrot : add command to display a countdown before taking a screenshot --- pages/linux/scrot.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pages/linux/scrot.md b/pages/linux/scrot.md index 0a34722ee95f2e..950cd0de43630e 100644 --- a/pages/linux/scrot.md +++ b/pages/linux/scrot.md @@ -17,3 +17,7 @@ - Capture a screenshot from the currently focused window: `scrot --focused` + +- Display a countdown of 10 seconds before taking a screenshot: + +`scrot -c -d {{10}}` From c058c317753c4bf1afb2565f218ccdf82629f168 Mon Sep 17 00:00:00 2001 From: Raizo62 Date: Wed, 20 Jan 2021 19:56:47 +0100 Subject: [PATCH 2/2] scrot : use the long options of "-c" ("--count") and "-d" ("--delay") --- pages/linux/scrot.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/linux/scrot.md b/pages/linux/scrot.md index 950cd0de43630e..43c1fd5ea6a427 100644 --- a/pages/linux/scrot.md +++ b/pages/linux/scrot.md @@ -20,4 +20,4 @@ - Display a countdown of 10 seconds before taking a screenshot: -`scrot -c -d {{10}}` +`scrot --count --delay {{10}}`