From 4cf201db3997201d814525c039187147ae977f16 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Fri, 18 Oct 2024 13:08:15 +0200 Subject: Update screenshot-prompt to be silent --- local/bin/screenshot-prompt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/local/bin/screenshot-prompt b/local/bin/screenshot-prompt index 7d4f1a7..b449f60 100755 --- a/local/bin/screenshot-prompt +++ b/local/bin/screenshot-prompt @@ -21,15 +21,15 @@ screenshot_dir="$HOME/screenshots" case "$choice" in 'Crop to file') - scrot --select + scrot --select --silent ;; 'Crop to clipboard') - scrot --select - | xclip -selection clipboard -target image/png + scrot --select --silent - | xclip -selection clipboard -target image/png ;; 'Fullscreen to file') - scrot + scrot --silent ;; 'Fullscreen to clipboard') - scrot - | xclip -selection clipboard -target image/png + scrot --silent - | xclip -selection clipboard -target image/png ;; esac -- cgit