better arg handling
This commit is contained in:
parent
f765e646b0
commit
3eebc07f2a
23
neofetch
23
neofetch
|
@ -3119,19 +3119,24 @@ getargs() {
|
||||||
# Screenshot
|
# Screenshot
|
||||||
--scrot | -s)
|
--scrot | -s)
|
||||||
scrot="on"
|
scrot="on"
|
||||||
if [ "$2" ]; then
|
case "$2" in
|
||||||
scrot_name="${2##*/}"
|
"--"* | "") ;;
|
||||||
scrot_dir="${2/$scrot_name}"
|
*)
|
||||||
fi
|
scrot_name="${2##*/}"
|
||||||
|
scrot_dir="${2/$scrot_name}"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
;;
|
;;
|
||||||
--upload | -su)
|
--upload | -su)
|
||||||
scrot="on"
|
scrot="on"
|
||||||
scrot_upload="on"
|
scrot_upload="on"
|
||||||
|
case "$2" in
|
||||||
if [ "$2" ]; then
|
"--"* | "") ;;
|
||||||
scrot_name="${2##*/}"
|
*)
|
||||||
scrot_dir="${2/$scrot_name}"
|
scrot_name="${2##*/}"
|
||||||
fi
|
scrot_dir="${2/$scrot_name}"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
;;
|
;;
|
||||||
--image_host) image_host="$2" ;;
|
--image_host) image_host="$2" ;;
|
||||||
--scrot_cmd) scrot_cmd="$2" ;;
|
--scrot_cmd) scrot_cmd="$2" ;;
|
||||||
|
|
Reference in New Issue