Commit 83dcdb42 authored by Dylan Araps's avatar Dylan Araps

Add args to --upload and --su

parent c08fc746
...@@ -406,7 +406,7 @@ scrot_name="neofetch-$(date +%F-%I-%M-%S-${RANDOM}).png" ...@@ -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
......
...@@ -2961,7 +2961,7 @@ usage() { cat << EOF ...@@ -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() { ...@@ -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" ;;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment