Add args to --upload and --su

This commit is contained in:
Dylan Araps 2016-10-02 22:49:30 +11:00
parent c08fc74607
commit 83dcdb42f4
2 changed files with 7 additions and 2 deletions

View File

@ -406,7 +406,7 @@ scrot_name="neofetch-$(date +%F-%I-%M-%S-${RANDOM}).png"
# Image upload host # Image upload host
# Where to upload the image. # Where to upload the image.
# Possible values: teknik, # Possible values: imgur, teknik
image_host="imgur" image_host="imgur"
# Imgur api key # Imgur api key

View File

@ -2961,7 +2961,7 @@ usage() { cat << EOF
--scrot | -s /path/to/img Take a screenshot, if path is left empty the screen- --scrot | -s /path/to/img Take a screenshot, if path is left empty the screen-
shot function will use \$scrot_dir and \$scrot_name. shot function will use \$scrot_dir and \$scrot_name.
--upload | -su Same as --scrot but uploads the scrot to a website. --upload | -su Same as --scrot but uploads the scrot to a website.
--image_host Website to upload scrots to. Takes: teknik, --image_host Website to upload scrots to. Takes: imgur, teknik
--scrot_cmd cmd Screenshot program to launch --scrot_cmd cmd Screenshot program to launch
Other: Other:
@ -3127,6 +3127,11 @@ getargs() {
--upload | -su) --upload | -su)
scrot="on" scrot="on"
scrot_upload="on" scrot_upload="on"
if [ "$2" ]; then
scrot_name="${2##*/}"
scrot_dir="${2/$scrot_name}"
fi
;; ;;
--image_host) image_host="$2" ;; --image_host) image_host="$2" ;;
--scrot_cmd) scrot_cmd="$2" ;; --scrot_cmd) scrot_cmd="$2" ;;