From 8a1eb2898752442c769d289a5aa1860d88eca95e Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Mon, 3 Oct 2016 18:13:16 +1100 Subject: [PATCH] Add --image_size as an alias to --size --- neofetch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neofetch b/neofetch index a43f0fc2..182a7870 100755 --- a/neofetch +++ b/neofetch @@ -3042,7 +3042,7 @@ getargs() { case "$2" in "--"* | "") image="ascii" ;; esac ;; - --size) image_size="$2" ;; + --image_size | --size) image_size="$2" ;; --crop_mode) crop_mode="$2" ;; --crop_offset) crop_offset="$2" ;; --xoffset) xoffset="$2" ;;