X-Git-Url: https://defaria.com/gitweb/?a=blobdiff_plain;f=bin%2Fcapture-window.sh;h=21270cfac8f60ca33d31e34cc4dc997eb9115041;hb=e7eb5a659729f3f263cf0d61df9252115e22dfde;hp=126b8e4d41c780b7f23b910d3429fa250889adab;hpb=67781e311ebed78e2540360784f95cb7aac9ae2f;p=clearscm.git diff --git a/bin/capture-window.sh b/bin/capture-window.sh index 126b8e4..21270cf 100755 --- a/bin/capture-window.sh +++ b/bin/capture-window.sh @@ -1,4 +1,6 @@ #!/bin/bash +# +# Apparently using png screws up sometimes so let's try using good old jpg timeout=10 screenshot_directory=/tmp @@ -8,10 +10,13 @@ function yesno { zenity --question --text "$question" --width=300 --timeout=$timeout 2> /dev/null } -mate-screenshot -wc +sleep 1 -file=$screenshot_directory/Screenshots/$(date +%F@%T).png +gnome-screenshot --window --clipboard +aplay ~/Conf/CameraClick.wav + +file="$screenshot_directory/$(date +%F@%T).jpg" if yesno "Save screenshot as $file?"; then - xclip -selection clipboard -t image/png -o > $file + xclip -selection clipboard -t image/jpeg -o > $file fi