From 8a637380b556760be922624584d3774c4952f8cf Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Sun, 7 Feb 2021 18:04:58 -0500 Subject: Use scrot for up -s if no screencapture Still missing putting the URL in an X selection. --- bin/man1/up.1 | 8 ++++++-- bin/up.sh | 6 +++++- 2 files changed, 11 insertions(+), 3 deletions(-) (limited to 'bin') diff --git a/bin/man1/up.1 b/bin/man1/up.1 index 8b50c271..189020de 100644 --- a/bin/man1/up.1 +++ b/bin/man1/up.1 @@ -1,4 +1,4 @@ -.Dd January 12, 2021 +.Dd February 7, 2021 .Dt UP 1 .Os . @@ -54,6 +54,8 @@ to produce an HTML file for upload. .It Fl s Use .Xr screencapture 1 +or +.Xr scrot 1 to produce a PNG file for upload. The file is optimized by .Xr pngo 1 @@ -72,5 +74,7 @@ Any arguments after are passed to .Xr hilex 1 and -.Xr screencapture 1 , +.Xr screencapture 1 +or +.Xr scrot 1 , respectively. diff --git a/bin/up.sh b/bin/up.sh index 562ab489..f55213d4 100644 --- a/bin/up.sh +++ b/bin/up.sh @@ -40,7 +40,11 @@ uploadHilex() { uploadScreen() { temp - screencapture -i "$@" "${temp}/capture.png" + if type screencapture >/dev/null; then + screencapture -i "$@" "${temp}/capture.png" + else + scrot -s "$@" "${temp}/capture.png" + fi pngo "${temp}/capture.png" || true upload "${temp}/capture.png" } -- cgit 1.4.1