-# Example for custom copying by inline scripting (note the backslashes):
-# kbdo 'bash -c "X(){ cp \$1 \$HOME/Pictures; }; X \$1" mycp'
+# Note above, that bash needs CP as the $0 for the -c scripting
+#
+# Example for post-processing with convert into fix resolution
+# kbdo 'bash -c "X(){ convert $1 -resize 800x600 ${1#.*}-x.png; }; X $1"' CVT
+#
+# Example for running custom script
+# kbdo $HOME/bin/mycp arg1 arg2
+#
+# Note above, that the temporary snapshot file is added as an additional
+# last argument ("arg3" as it were); something like /tmp/Screenshot-date.png