Changed to use jpg
authorAndrew DeFaria <A.DeFaria@cpanel.net>
Tue, 20 Sep 2022 00:00:44 +0000 (17:00 -0700)
committerAndrew DeFaria <A.DeFaria@cpanel.net>
Tue, 20 Sep 2022 00:00:44 +0000 (17:00 -0700)
bin/capture-area.sh
bin/capture-window.sh

index c4e9ea8..d00d4a1 100755 (executable)
@@ -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,11 +10,11 @@ function yesno {
   zenity --question --text "$question" --width=300 --timeout=$timeout 2> /dev/null
 }
 
-mate-screenshot -ac
+mate-screenshot --area --clipboard
 aplay ~/Conf/CameraClick.wav
 
-file="$screenshot_directory/$(date +%F@%T).png"
+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
index 4a859c2..21270cf 100755 (executable)
@@ -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,11 +10,13 @@ function yesno {
   zenity --question --text "$question" --width=300 --timeout=$timeout 2> /dev/null
 }
 
-mate-screenshot -wc
+sleep 1
+
+gnome-screenshot --window --clipboard
 aplay ~/Conf/CameraClick.wav
 
-file="$screenshot_directory/$(date +%F@%T).png"
+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