Commit 598056b4 authored by Dylan Araps's avatar Dylan Araps

Logo mode documentation

parent 83fd93e4
...@@ -454,6 +454,7 @@ alias neofetch2="neofetch \ ...@@ -454,6 +454,7 @@ alias neofetch2="neofetch \
--ascii_logo_size Size of ascii logo. --ascii_logo_size Size of ascii logo.
Supported distros: Arch, Gentoo, Crux, OpenBSD. Supported distros: Arch, Gentoo, Crux, OpenBSD.
--ascii_bold on/off Whether or not to bold the ascii logo. --ascii_bold on/off Whether or not to bold the ascii logo.
--logo | -L Hide the info text and only show the ascii logo.
Screenshot: Screenshot:
--scrot /path/to/img Take a screenshot, if path is left empty the screen- --scrot /path/to/img Take a screenshot, if path is left empty the screen-
......
...@@ -2922,6 +2922,7 @@ usage() { cat << EOF ...@@ -2922,6 +2922,7 @@ usage() { cat << EOF
--ascii_logo_size Size of ascii logo. --ascii_logo_size Size of ascii logo.
Supported distros: Arch, Gentoo, Crux, OpenBSD. Supported distros: Arch, Gentoo, Crux, OpenBSD.
--ascii_bold on/off Whether or not to bold the ascii logo. --ascii_bold on/off Whether or not to bold the ascii logo.
--logo | -L Hide the info text and only show the ascii logo.
Screenshot: Screenshot:
--scrot /path/to/img Take a screenshot, if path is left empty the screen- --scrot /path/to/img Take a screenshot, if path is left empty the screen-
...@@ -3055,11 +3056,6 @@ getargs() { ...@@ -3055,11 +3056,6 @@ getargs() {
;; ;;
# Ascii # Ascii
--logo | -L)
image="ascii"
printinfo() { info linebreak; }
;;
--ascii) --ascii)
image="ascii" image="ascii"
ascii="$2" ascii="$2"
...@@ -3084,6 +3080,11 @@ getargs() { ...@@ -3084,6 +3080,11 @@ getargs() {
--ascii_logo_size) ascii_logo_size="$2" ;; --ascii_logo_size) ascii_logo_size="$2" ;;
--ascii_bold) ascii_bold="$2" ;; --ascii_bold) ascii_bold="$2" ;;
--logo | -L)
image="ascii"
printinfo() { info linebreak; }
;;
# Screenshot # Screenshot
--scrot | -s) --scrot | -s)
......
...@@ -230,6 +230,9 @@ Possible values: small, normal ...@@ -230,6 +230,9 @@ Possible values: small, normal
.TP .TP
.B \--ascii_bold 'on/off' .B \--ascii_bold 'on/off'
Whether or not to bold the ascii logo. Whether or not to bold the ascii logo.
.TP
.B \--logo | -L
Hide the info text and only show the ascii logo.
.SH SCREENSHOT .SH SCREENSHOT
.TP .TP
......
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