general: Enforce 100 chars per line.
This commit is contained in:
parent
72459ced1c
commit
3a41c45b61
146
neofetch
146
neofetch
|
@ -2429,7 +2429,10 @@ get_wallpaper() {
|
||||||
|
|
||||||
case "$de" in
|
case "$de" in
|
||||||
"MATE"*) image="$(gsettings get org.mate.background picture-filename)" ;;
|
"MATE"*) image="$(gsettings get org.mate.background picture-filename)" ;;
|
||||||
"Xfce"*) image="$(xfconf-query -c xfce4-desktop -p /backdrop/screen0/monitor0/workspace0/last-image)" ;;
|
"Xfce"*)
|
||||||
|
image="$(xfconf-query -c xfce4-desktop -p \
|
||||||
|
"/backdrop/screen0/monitor0/workspace0/last-image")"
|
||||||
|
;;
|
||||||
|
|
||||||
"Cinnamon"*)
|
"Cinnamon"*)
|
||||||
image="$(gsettings get org.cinnamon.desktop.background picture-uri)"
|
image="$(gsettings get org.cinnamon.desktop.background picture-uri)"
|
||||||
|
@ -2441,7 +2444,8 @@ get_wallpaper() {
|
||||||
image="$(awk -F\' '/feh/ {printf $2}' "${HOME}/.fehbg")"
|
image="$(awk -F\' '/feh/ {printf $2}' "${HOME}/.fehbg")"
|
||||||
|
|
||||||
elif type -p nitrogen >/dev/null; then
|
elif type -p nitrogen >/dev/null; then
|
||||||
image="$(awk -F'=' '/file/ {printf $2;exit;}' "${XDG_CONFIG_HOME}/nitrogen/bg-saved.cfg")"
|
image="$(awk -F'=' '/file/ {printf $2;exit;}' \
|
||||||
|
"${XDG_CONFIG_HOME}/nitrogen/bg-saved.cfg")"
|
||||||
|
|
||||||
else
|
else
|
||||||
image="$(gsettings get org.gnome.desktop.background picture-uri)"
|
image="$(gsettings get org.gnome.desktop.background picture-uri)"
|
||||||
|
@ -2544,7 +2548,8 @@ get_term_size() {
|
||||||
|
|
||||||
# If the ID was found get the window size.
|
# If the ID was found get the window size.
|
||||||
if [[ "$current_window" ]]; then
|
if [[ "$current_window" ]]; then
|
||||||
term_size="$(xwininfo -id "$current_window" | awk -F ': ' '/Width|Height/ {printf $2 " "}')"
|
term_size="$(xwininfo -id "$current_window" |\
|
||||||
|
awk -F ': ' '/Width|Height/ {printf $2 " "}')"
|
||||||
term_width="${term_size/ *}"
|
term_width="${term_size/ *}"
|
||||||
term_height="${term_size/${term_width}}"
|
term_height="${term_size/${term_width}}"
|
||||||
else
|
else
|
||||||
|
@ -2680,15 +2685,20 @@ make_thumbnail() {
|
||||||
display_image() {
|
display_image() {
|
||||||
case "$image_backend" in
|
case "$image_backend" in
|
||||||
"caca")
|
"caca")
|
||||||
img2txt -W "$((width / font_width)))" -H "$((height / font_height))" --gamma=0.6 "$image" || to_off "Image: libcaca failed to display the image."
|
img2txt -W "$((width / font_width)))" \
|
||||||
|
-H "$((height / font_height))" \
|
||||||
|
--gamma=0.6 "$image" ||\
|
||||||
|
to_off "Image: libcaca failed to display the image."
|
||||||
;;
|
;;
|
||||||
|
|
||||||
"catimg")
|
"catimg")
|
||||||
catimg -w "$((width * 2 / font_width))" -r 0 "$image" || to_off "Image: catimg failed to display the image."
|
catimg -w "$((width * 2 / font_width))" -r 0 "$image" ||\
|
||||||
|
to_off "Image: catimg failed to display the image."
|
||||||
;;
|
;;
|
||||||
|
|
||||||
"jp2a")
|
"jp2a")
|
||||||
jp2a --width="$((width / font_width))" --colors "$image" || to_off "Image: jp2a failed to display the image."
|
jp2a --width="$((width / font_width))" --colors "$image" ||\
|
||||||
|
to_off "Image: jp2a failed to display the image."
|
||||||
;;
|
;;
|
||||||
|
|
||||||
"sixel")
|
"sixel")
|
||||||
|
@ -2696,11 +2706,13 @@ display_image() {
|
||||||
;;
|
;;
|
||||||
|
|
||||||
"termpix")
|
"termpix")
|
||||||
termpix --width "$((width / font_width))" "$image" || to_off "Image: termpix failed to display the image."
|
termpix --width "$((width / font_width))" "$image" ||\
|
||||||
|
to_off "Image: termpix failed to display the image."
|
||||||
;;
|
;;
|
||||||
|
|
||||||
"iterm2")
|
"iterm2")
|
||||||
iterm_cmd="\033]1337;File=width=${width}px;height=${height}px;inline=1:$(base64 < "$image")"
|
image="$(base64 < "$image")"
|
||||||
|
iterm_cmd="\033]1337;File=width=${width}px;height=${height}px;inline=1:${image}"
|
||||||
|
|
||||||
# Tmux requires an additional escape sequence for this to work.
|
# Tmux requires an additional escape sequence for this to work.
|
||||||
[[ -n "$TMUX" ]] && iterm_cmd="\033Ptmux;\033${iterm_cmd}\033\\"
|
[[ -n "$TMUX" ]] && iterm_cmd="\033Ptmux;\033${iterm_cmd}\033\\"
|
||||||
|
@ -2709,7 +2721,8 @@ display_image() {
|
||||||
;;
|
;;
|
||||||
|
|
||||||
"tycat")
|
"tycat")
|
||||||
tycat "$image" || to_off "Image: tycat failed to display the image."
|
tycat "$image" ||\
|
||||||
|
to_off "Image: tycat failed to display the image."
|
||||||
;;
|
;;
|
||||||
|
|
||||||
"w3m")
|
"w3m")
|
||||||
|
@ -2719,7 +2732,8 @@ display_image() {
|
||||||
# appearing in specific terminal emulators.
|
# appearing in specific terminal emulators.
|
||||||
sleep 0.05
|
sleep 0.05
|
||||||
printf "%b\n" "0;1;$xoffset;$yoffset;$width;$height;;;;;$image\n4;\n3;" |\
|
printf "%b\n" "0;1;$xoffset;$yoffset;$width;$height;;;;;$image\n4;\n3;" |\
|
||||||
"${w3m_img_path:-false}" -bg "$background_color" >/dev/null 2>&1 || to_off "Image: w3m-img failed to display the image."
|
"${w3m_img_path:-false}" -bg "$background_color" >/dev/null 2>&1 ||\
|
||||||
|
to_off "Image: w3m-img failed to display the image."
|
||||||
|
|
||||||
zws="\xE2\x80\x8B\x20"
|
zws="\xE2\x80\x8B\x20"
|
||||||
;;
|
;;
|
||||||
|
@ -2777,12 +2791,14 @@ scrot_upload() {
|
||||||
|
|
||||||
case "$image_host" in
|
case "$image_host" in
|
||||||
"teknik")
|
"teknik")
|
||||||
image_url="$(curl -sf -F file="@${image_file};type=image/png" "https://api.teknik.io/v1/Upload")"
|
image_url="$(curl -sf -F file="@${image_file};type=image/png" \
|
||||||
|
"https://api.teknik.io/v1/Upload")"
|
||||||
image_url="$(awk -F 'url:|,' '{printf $2}' <<< "${image_url//\"}")"
|
image_url="$(awk -F 'url:|,' '{printf $2}' <<< "${image_url//\"}")"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
"imgur")
|
"imgur")
|
||||||
image_url="$(curl -sH "Authorization: Client-ID 0e8b44d15e9fc95" -F image="@${image_file}" "https://api.imgur.com/3/upload")"
|
image_url="$(curl -sH "Authorization: Client-ID 0e8b44d15e9fc95" \
|
||||||
|
-F image="@${image_file}" "https://api.imgur.com/3/upload")"
|
||||||
image_url="$(awk -F 'id:|,' '{printf $2}' <<< "${image_url//\"}")"
|
image_url="$(awk -F 'id:|,' '{printf $2}' <<< "${image_url//\"}")"
|
||||||
[[ "$image_url" ]] && image_url="https://i.imgur.com/${image_url}.png"
|
[[ "$image_url" ]] && image_url="https://i.imgur.com/${image_url}.png"
|
||||||
;;
|
;;
|
||||||
|
@ -2920,7 +2936,8 @@ prin() {
|
||||||
get_underline() {
|
get_underline() {
|
||||||
if [[ "$underline_enabled" == "on" ]]; then
|
if [[ "$underline_enabled" == "on" ]]; then
|
||||||
printf -v underline "%${length}s"
|
printf -v underline "%${length}s"
|
||||||
printf "%b\n" "${text_padding:+\033[${text_padding}C}${zws}${underline_color}${underline// /$underline_char}${reset} "
|
printf "%b%b\n" "${text_padding:+\033[${text_padding}C}${zws}${underline_color}" \
|
||||||
|
"${underline// /$underline_char}${reset} "
|
||||||
unset -v length
|
unset -v length
|
||||||
fi
|
fi
|
||||||
prin=1
|
prin=1
|
||||||
|
@ -3620,7 +3637,8 @@ get_distro_colors() {
|
||||||
ascii_file="void"
|
ascii_file="void"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
*"[Windows 10]"* | *"on Windows 10"* | "Windows 8"* | "Windows 10"* | "windows10" | "windows8" )
|
*"[Windows 10]"* | *"on Windows 10"* | "Windows 8"* |\
|
||||||
|
"Windows 10"* | "windows10" | "windows8" )
|
||||||
set_colors 6 7
|
set_colors 6 7
|
||||||
ascii_file="windows10"
|
ascii_file="windows10"
|
||||||
;;
|
;;
|
||||||
|
@ -3949,41 +3967,67 @@ old_functions() {
|
||||||
}
|
}
|
||||||
|
|
||||||
old_options() {
|
old_options() {
|
||||||
[[ -n "$osx_buildversion" ]] && err "Config: \$osx_buildversion is deprecated, use \$distro_shorthand instead."
|
[[ -n "$osx_buildversion" ]] && \
|
||||||
[[ -n "$osx_codename" ]] && err "Config: \$osx_codename is deprecated, use \$distro_shorthand instead."
|
err "Config: \$osx_buildversion is deprecated, use \$distro_shorthand instead."
|
||||||
[[ "$cpu_cores" == "on" ]] && err "Config: cpu_cores='on' is deprecated, use cpu_cores='logical|physical|off' instead."
|
[[ -n "$osx_codename" ]] && \
|
||||||
[[ -n "$image" ]] && { err "Config: \$image is deprecated, use \$image_source instead."; image_source="$image"; }
|
err "Config: \$osx_codename is deprecated, use \$distro_shorthand instead."
|
||||||
|
[[ "$cpu_cores" == "on" ]] && \
|
||||||
|
err "Config: cpu_cores='on' is deprecated, use cpu_cores='logical|physical|off' instead."
|
||||||
|
[[ -n "$image" ]] && \
|
||||||
|
{ err "Config: \$image is deprecated, use \$image_source instead."; image_source="$image"; }
|
||||||
|
|
||||||
# All progress_ variables were changed to bar_.
|
# All progress_ variables were changed to bar_.
|
||||||
[[ -n "$progress_char" ]] && err "Config: \$progress_char is deprecated, use \$bar_char_elapsed and \$bar_char_total instead."
|
[[ -n "$progress_char" ]] && \
|
||||||
[[ -n "$progress_border" ]] && { err "Config: \$progress_border is deprecated, use \$bar_border instead."; bar_border="$progress_border"; }
|
err "Config: \$progress_char is deprecated, use \$bar_char_{elapsed,total} instead."
|
||||||
[[ -n "$progress_length" ]] && { err "Config: \$progress_length is deprecated, use \$bar_length instead."; bar_length="$progress_length"; }
|
[[ -n "$progress_border" ]] && \
|
||||||
[[ -n "$progress_color_elapsed" ]] && { err "Config: \$progress_color_elapsed is deprecated, use \$bar_color_elapsed instead."; bar_color_elapsed="$progress_color_elapsed"; }
|
{ err "Config: \$progress_border is deprecated, use \$bar_border instead."; \
|
||||||
[[ -n "$progress_color_total" ]] && { err "Config: \$progress_color_total is deprecated, use \$bar_color_total instead."; bar_color_total="$progress_color_total"; }
|
bar_border="$progress_border"; }
|
||||||
|
[[ -n "$progress_length" ]] && \
|
||||||
|
{ err "Config: \$progress_length is deprecated, use \$bar_length instead."; \
|
||||||
|
bar_length="$progress_length"; }
|
||||||
|
[[ -n "$progress_color_elapsed" ]] && \
|
||||||
|
{ err "Config: \$progress_color_elapsed is deprecated, use \$bar_color_elapsed instead."; \
|
||||||
|
bar_color_elapsed="$progress_color_elapsed"; }
|
||||||
|
[[ -n "$progress_color_total" ]] && \
|
||||||
|
{ err "Config: \$progress_color_total is deprecated, use \$bar_color_total instead."; \
|
||||||
|
bar_color_total="$progress_color_total"; }
|
||||||
|
|
||||||
# All cpufreq values were changed in 3.0.
|
# All cpufreq values were changed in 3.0.
|
||||||
[[ "$speed_type" == "current" ]] && err "Config: speed_type='current' is deprecated, use speed_type='scaling_cur_freq' instead."
|
[[ "$speed_type" == "current" ]] && \
|
||||||
[[ "$speed_type" == "min" ]] && err "Config: speed_type='min' is deprecated, use speed_type='scaling_min_freq' instead."
|
err "Config: speed_type='current' is deprecated, use speed_type='scaling_cur_freq' instead."
|
||||||
[[ "$speed_type" == "max" ]] && err "Config: speed_type='max' is deprecated, use speed_type='scaling_max_freq' instead."
|
[[ "$speed_type" == "min" ]] && \
|
||||||
[[ "$speed_type" == "bios" ]] && err "Config: speed_type='bios' is deprecated, use speed_type='bios_limit' instead."
|
err "Config: speed_type='min' is deprecated, use speed_type='scaling_min_freq' instead."
|
||||||
|
[[ "$speed_type" == "max" ]] && \
|
||||||
|
err "Config: speed_type='max' is deprecated, use speed_type='scaling_max_freq' instead."
|
||||||
|
[[ "$speed_type" == "bios" ]] && \
|
||||||
|
err "Config: speed_type='bios' is deprecated, use speed_type='bios_limit' instead."
|
||||||
|
|
||||||
# Ascii_logo_size was removed in 3.0.
|
# Ascii_logo_size was removed in 3.0.
|
||||||
[[ "$ascii_logo_size" ]] && err "Config: ascii_logo_size is deprecated, use ascii_distro='{alpine,arch,crux,gentoo,openbsd,void}_small' instead."
|
[[ "$ascii_logo_size" ]] && \
|
||||||
|
err "Config: ascii_logo_size is deprecated, use ascii_distro='{distro}_small' instead."
|
||||||
|
|
||||||
# $start and $end were replaced with ${block_range[@]} in 3.0.
|
# $start and $end were replaced with ${block_range[@]} in 3.0.
|
||||||
[[ "$start" && "$end" ]] && { err "Config: \$start and \$end are deprecated, use block_range=(0 7) instead."; block_range=("$start" "$end"); }
|
[[ "$start" && "$end" ]] && \
|
||||||
|
{ err "Config: \$start and \$end are deprecated, use block_range=(0 7) instead."; \
|
||||||
|
block_range=("$start" "$end"); }
|
||||||
|
|
||||||
# Fahrenheit support was added to CPU so the options were changed.
|
# Fahrenheit support was added to CPU so the options were changed.
|
||||||
[[ "$cpu_temp" == "on" ]] && { err "Config: cpu_temp='on' is deprecated, use cpu_temp='C' or 'F' instead."; cpu_temp="C"; }
|
[[ "$cpu_temp" == "on" ]] && \
|
||||||
|
{ err "Config: cpu_temp='on' is deprecated, use cpu_temp='C' or 'F' instead.";
|
||||||
|
cpu_temp="C"; }
|
||||||
|
|
||||||
# Birthday was renamed to Install Date in 3.0
|
# Birthday was renamed to Install Date in 3.0
|
||||||
[[ -n "$birthday_time" ]] && { err "Config: \$birthday_time is deprecated, use \3install_time instead."; install_time="$birthday_time"; }
|
[[ -n "$birthday_time" ]] && \
|
||||||
|
{ err "Config: \$birthday_time is deprecated, use \3install_time instead."; \
|
||||||
|
install_time="$birthday_time"; }
|
||||||
|
|
||||||
# Scrot dir was removed in 3.1.0.
|
# Scrot dir was removed in 3.1.0.
|
||||||
[[ -n "$scrot_dir" ]] && scrot_dir=
|
[[ -n "$scrot_dir" ]] && scrot_dir=
|
||||||
|
|
||||||
# cpu_shorthand was deprecated in 3.3.0
|
# cpu_shorthand was deprecated in 3.3.0
|
||||||
[[ -n "$cpu_shorthand" ]] && { err "Config: \$cpu_shorthand is deprecated, use \$cpu_brand, \$cpu_cores, and \$cpu_speed instead."; }
|
[[ -n "$cpu_shorthand" ]] && \
|
||||||
|
{ err "Config: \$cpu_shorthand is deprecated, use \$cpu_brand, \$cpu_cores, and
|
||||||
|
\$cpu_speed instead."; }
|
||||||
}
|
}
|
||||||
|
|
||||||
cache_uname() {
|
cache_uname() {
|
||||||
|
@ -4124,7 +4168,7 @@ INFO:
|
||||||
--disable infoname Allows you to disable an info line from appearing
|
--disable infoname Allows you to disable an info line from appearing
|
||||||
in the output.
|
in the output.
|
||||||
|
|
||||||
NOTE: You can supply multiple args. eg. 'neofetch --disable cpu gpu disk shell'
|
NOTE: You can supply multiple args. eg. 'neofetch --disable cpu gpu'
|
||||||
|
|
||||||
--os_arch on/off Hide/Show OS architecture.
|
--os_arch on/off Hide/Show OS architecture.
|
||||||
--speed_type type Change the type of cpu speed to display.
|
--speed_type type Change the type of cpu speed to display.
|
||||||
|
@ -4135,7 +4179,8 @@ INFO:
|
||||||
|
|
||||||
--speed_shorthand on/off Whether or not to show decimals in CPU speed.
|
--speed_shorthand on/off Whether or not to show decimals in CPU speed.
|
||||||
|
|
||||||
NOTE: This flag is not supported in systems with CPU speed less than 1 GHz.
|
NOTE: This flag is not supported in systems with CPU speed less than
|
||||||
|
1 GHz.
|
||||||
|
|
||||||
--cpu_brand on/off Enable/Disable CPU brand in output.
|
--cpu_brand on/off Enable/Disable CPU brand in output.
|
||||||
--cpu_cores type Whether or not to display the number of CPU cores
|
--cpu_cores type Whether or not to display the number of CPU cores
|
||||||
|
@ -4148,7 +4193,8 @@ INFO:
|
||||||
|
|
||||||
NOTE: This only works on Linux and BSD.
|
NOTE: This only works on Linux and BSD.
|
||||||
|
|
||||||
NOTE: For FreeBSD and NetBSD-based systems, you need to enable coretemp kernel module. This only supports newer Intel processors.
|
NOTE: For FreeBSD and NetBSD-based systems, you need to enable
|
||||||
|
coretemp kernel module. This only supports newer Intel processors.
|
||||||
|
|
||||||
--distro_shorthand on/off Shorten the output of distro (tiny, on, off)
|
--distro_shorthand on/off Shorten the output of distro (tiny, on, off)
|
||||||
|
|
||||||
|
@ -4222,9 +4268,11 @@ BARS:
|
||||||
|
|
||||||
IMAGE BACKEND:
|
IMAGE BACKEND:
|
||||||
--backend backend Which image backend to use.
|
--backend backend Which image backend to use.
|
||||||
Possible values: 'ascii', 'caca', 'catimg', 'jp2a', 'iterm2', 'off', 'sixel', 'tycat', 'w3m'
|
Possible values: 'ascii', 'caca', 'catimg', 'jp2a', 'iterm2', 'off',
|
||||||
|
'sixel', 'tycat', 'w3m'
|
||||||
--source source Which image or ascii file to use.
|
--source source Which image or ascii file to use.
|
||||||
Possible values: 'auto', 'ascii', 'wallpaper', '/path/to/img', '/path/to/ascii', '/path/to/dir/'
|
Possible values: 'auto', 'ascii', 'wallpaper', '/path/to/img',
|
||||||
|
'/path/to/ascii', '/path/to/dir/'
|
||||||
--ascii source Shortcut to use 'ascii' backend.
|
--ascii source Shortcut to use 'ascii' backend.
|
||||||
--caca source Shortcut to use 'caca' backend.
|
--caca source Shortcut to use 'caca' backend.
|
||||||
--catimg source Shortcut to use 'catimg' backend.
|
--catimg source Shortcut to use 'catimg' backend.
|
||||||
|
@ -4236,7 +4284,8 @@ IMAGE BACKEND:
|
||||||
--w3m source Shortcut to use 'w3m' backend.
|
--w3m source Shortcut to use 'w3m' backend.
|
||||||
--off Shortcut to use 'off' backend.
|
--off Shortcut to use 'off' backend.
|
||||||
|
|
||||||
NOTE: 'source; can be any of the following: 'auto', 'ascii', 'wallpaper', '/path/to/img', '/path/to/ascii', '/path/to/dir/'
|
NOTE: 'source; can be any of the following: 'auto', 'ascii', 'wallpaper', '/path/to/img',
|
||||||
|
'/path/to/ascii', '/path/to/dir/'
|
||||||
|
|
||||||
ASCII:
|
ASCII:
|
||||||
--ascii_colors x x x x x x Colors to print the ascii art
|
--ascii_colors x x x x x x Colors to print the ascii art
|
||||||
|
@ -4248,9 +4297,11 @@ ASCII:
|
||||||
|
|
||||||
NOTE: Ubuntu has flavor variants.
|
NOTE: Ubuntu has flavor variants.
|
||||||
|
|
||||||
NOTE: Change this to 'Lubuntu', 'Xubuntu', 'Ubuntu-GNOME', 'Ubuntu-Studio' or 'Ubuntu-Budgie' to use the flavors.
|
NOTE: Change this to 'Lubuntu', 'Xubuntu', 'Ubuntu-GNOME',
|
||||||
|
'Ubuntu-Studio' or 'Ubuntu-Budgie' to use the flavors.
|
||||||
|
|
||||||
NOTE: Alpine, Arch, CRUX, Debian, Gentoo, FreeBSD, Mac, NixOS, OpenBSD, and Void have a smaller logo variant.
|
NOTE: Alpine, Arch, CRUX, Debian, Gentoo, FreeBSD, Mac, NixOS,
|
||||||
|
OpenBSD, and Void have a smaller logo variant.
|
||||||
|
|
||||||
NOTE: Use '{distro name}_small' to use the small variants.
|
NOTE: Use '{distro name}_small' to use the small variants.
|
||||||
|
|
||||||
|
@ -4260,7 +4311,8 @@ ASCII:
|
||||||
Possible values: bar, infobar, barinfo, off
|
Possible values: bar, infobar, barinfo, off
|
||||||
|
|
||||||
IMAGE:
|
IMAGE:
|
||||||
--loop Redraw the image constantly until Ctrl+C is used. This fixes issues in some terminals emulators when using image mode.
|
--loop Redraw the image constantly until Ctrl+C is used. This fixes issues
|
||||||
|
in some terminals emulators when using image mode.
|
||||||
--size 00px | --size 00% How to size the image.
|
--size 00px | --size 00% How to size the image.
|
||||||
Possible values: auto, 00px, 00%, none
|
Possible values: auto, 00px, 00%, none
|
||||||
--crop_mode mode Which crop mode to use
|
--crop_mode mode Which crop mode to use
|
||||||
|
@ -4277,7 +4329,8 @@ IMAGE:
|
||||||
This only works with w3m.
|
This only works with w3m.
|
||||||
--gap num Gap between image and text.
|
--gap num Gap between image and text.
|
||||||
|
|
||||||
NOTE: --gap can take a negative value which will move the text closer to the left side.
|
NOTE: --gap can take a negative value which will move the text
|
||||||
|
closer to the left side.
|
||||||
|
|
||||||
--clean Delete cached files and thumbnails.
|
--clean Delete cached files and thumbnails.
|
||||||
|
|
||||||
|
@ -4439,7 +4492,8 @@ get_args() {
|
||||||
# Image backend
|
# Image backend
|
||||||
"--backend") image_backend="$2" ;;
|
"--backend") image_backend="$2" ;;
|
||||||
"--source") image_source="$2" ;;
|
"--source") image_source="$2" ;;
|
||||||
"--ascii" | "--caca" | "--catimg" | "--jp2a" | "--iterm2" | "--off" | "--sixel" | "--termpix" | "--tycat" | "--w3m")
|
"--ascii" | "--caca" | "--catimg" | "--jp2a" | "--iterm2" | "--off" | "--sixel" |\
|
||||||
|
"--termpix" | "--tycat" | "--w3m")
|
||||||
image_backend="${1/--}"
|
image_backend="${1/--}"
|
||||||
case "$2" in
|
case "$2" in
|
||||||
"-"* | "") ;;
|
"-"* | "") ;;
|
||||||
|
@ -4512,7 +4566,11 @@ get_args() {
|
||||||
"-vv") set -x; verbose="on" ;;
|
"-vv") set -x; verbose="on" ;;
|
||||||
"--help") usage ;;
|
"--help") usage ;;
|
||||||
"--version") version ;;
|
"--version") version ;;
|
||||||
"--gen-man") help2man -n"A fast, highly customizable system info script" -N ./neofetch -o neofetch.1; exit 1 ;;
|
"--gen-man")
|
||||||
|
help2man -n "A fast, highly customizable system info script" \
|
||||||
|
-N ./neofetch -o neofetch.1
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
shift
|
shift
|
||||||
|
|
41
neofetch.1
41
neofetch.1
|
@ -1,5 +1,5 @@
|
||||||
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.4.
|
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.4.
|
||||||
.TH NEOFETCH "1" "July 2017" "Neofetch 3.2.1-git" "User Commands"
|
.TH NEOFETCH "1" "August 2017" "Neofetch 3.2.1-git" "User Commands"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
Neofetch \- A fast, highly customizable system info script
|
Neofetch \- A fast, highly customizable system info script
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
@ -18,7 +18,7 @@ NOTE: Every launch flag has a config option.
|
||||||
Allows you to disable an info line from appearing
|
Allows you to disable an info line from appearing
|
||||||
in the output.
|
in the output.
|
||||||
.IP
|
.IP
|
||||||
NOTE: You can supply multiple args. eg. 'neofetch \fB\-\-disable\fR cpu gpu disk shell'
|
NOTE: You can supply multiple args. eg. 'neofetch \fB\-\-disable\fR cpu gpu'
|
||||||
.TP
|
.TP
|
||||||
\fB\-\-os_arch\fR on/off
|
\fB\-\-os_arch\fR on/off
|
||||||
Hide/Show OS architecture.
|
Hide/Show OS architecture.
|
||||||
|
@ -32,8 +32,9 @@ NOTE: This only supports Linux with cpufreq.
|
||||||
.TP
|
.TP
|
||||||
\fB\-\-speed_shorthand\fR on/off
|
\fB\-\-speed_shorthand\fR on/off
|
||||||
Whether or not to show decimals in CPU speed.
|
Whether or not to show decimals in CPU speed.
|
||||||
.IP
|
.TP
|
||||||
NOTE: This flag is not supported in systems with CPU speed less than 1 GHz.
|
NOTE: This flag is not supported in systems with CPU speed less than
|
||||||
|
1 GHz.
|
||||||
.TP
|
.TP
|
||||||
\fB\-\-cpu_brand\fR on/off
|
\fB\-\-cpu_brand\fR on/off
|
||||||
Enable/Disable CPU brand in output.
|
Enable/Disable CPU brand in output.
|
||||||
|
@ -51,8 +52,9 @@ Hide/Show cpu speed.
|
||||||
Hide/Show cpu temperature.
|
Hide/Show cpu temperature.
|
||||||
.IP
|
.IP
|
||||||
NOTE: This only works on Linux and BSD.
|
NOTE: This only works on Linux and BSD.
|
||||||
.IP
|
.TP
|
||||||
NOTE: For FreeBSD and NetBSD\-based systems, you need to enable coretemp kernel module. This only supports newer Intel processors.
|
NOTE: For FreeBSD and NetBSD\-based systems, you need to enable
|
||||||
|
coretemp kernel module. This only supports newer Intel processors.
|
||||||
.TP
|
.TP
|
||||||
\fB\-\-distro_shorthand\fR on/off
|
\fB\-\-distro_shorthand\fR on/off
|
||||||
Shorten the output of distro (tiny, on, off)
|
Shorten the output of distro (tiny, on, off)
|
||||||
|
@ -182,11 +184,13 @@ Possible values: bar, infobar, barinfo, off
|
||||||
.TP
|
.TP
|
||||||
\fB\-\-backend\fR backend
|
\fB\-\-backend\fR backend
|
||||||
Which image backend to use.
|
Which image backend to use.
|
||||||
Possible values: 'ascii', 'caca', 'catimg', 'jp2a', 'iterm2', 'off', 'sixel', 'tycat', 'w3m'
|
Possible values: 'ascii', 'caca', 'catimg', 'jp2a', 'iterm2', 'off',
|
||||||
|
\&'sixel', 'tycat', 'w3m'
|
||||||
.TP
|
.TP
|
||||||
\fB\-\-source\fR source
|
\fB\-\-source\fR source
|
||||||
Which image or ascii file to use.
|
Which image or ascii file to use.
|
||||||
Possible values: 'auto', 'ascii', 'wallpaper', '/path/to/img', '/path/to/ascii', '/path/to/dir/'
|
Possible values: 'auto', 'ascii', 'wallpaper', '/path/to/img',
|
||||||
|
\&'/path/to/ascii', '/path/to/dir/'
|
||||||
.TP
|
.TP
|
||||||
\fB\-\-ascii\fR source
|
\fB\-\-ascii\fR source
|
||||||
Shortcut to use 'ascii' backend.
|
Shortcut to use 'ascii' backend.
|
||||||
|
@ -218,7 +222,8 @@ Shortcut to use 'w3m' backend.
|
||||||
\fB\-\-off\fR
|
\fB\-\-off\fR
|
||||||
Shortcut to use 'off' backend.
|
Shortcut to use 'off' backend.
|
||||||
.IP
|
.IP
|
||||||
NOTE: 'source; can be any of the following: 'auto', 'ascii', 'wallpaper', '/path/to/img', '/path/to/ascii', '/path/to/dir/'
|
NOTE: 'source; can be any of the following: 'auto', 'ascii', 'wallpaper', '/path/to/img',
|
||||||
|
\&'/path/to/ascii', '/path/to/dir/'
|
||||||
.SS "ASCII:"
|
.SS "ASCII:"
|
||||||
.TP
|
.TP
|
||||||
\fB\-\-ascii_colors\fR x x x x x x
|
\fB\-\-ascii_colors\fR x x x x x x
|
||||||
|
@ -232,10 +237,12 @@ NOTE: Arch and Ubuntu have 'old' logo variants.
|
||||||
NOTE: Use 'arch_old' or 'ubuntu_old' to use the old logos.
|
NOTE: Use 'arch_old' or 'ubuntu_old' to use the old logos.
|
||||||
.IP
|
.IP
|
||||||
NOTE: Ubuntu has flavor variants.
|
NOTE: Ubuntu has flavor variants.
|
||||||
.IP
|
.TP
|
||||||
NOTE: Change this to 'Lubuntu', 'Xubuntu', 'Ubuntu\-GNOME', 'Ubuntu\-Studio' or 'Ubuntu\-Budgie' to use the flavors.
|
NOTE: Change this to 'Lubuntu', 'Xubuntu', 'Ubuntu\-GNOME',
|
||||||
.IP
|
\&'Ubuntu\-Studio' or 'Ubuntu\-Budgie' to use the flavors.
|
||||||
NOTE: Alpine, Arch, CRUX, Debian, Gentoo, FreeBSD, Mac, NixOS, OpenBSD, and Void have a smaller logo variant.
|
.TP
|
||||||
|
NOTE: Alpine, Arch, CRUX, Debian, Gentoo, FreeBSD, Mac, NixOS,
|
||||||
|
OpenBSD, and Void have a smaller logo variant.
|
||||||
.IP
|
.IP
|
||||||
NOTE: Use '{distro name}_small' to use the small variants.
|
NOTE: Use '{distro name}_small' to use the small variants.
|
||||||
.TP
|
.TP
|
||||||
|
@ -249,7 +256,8 @@ Possible values: bar, infobar, barinfo, off
|
||||||
.SS "IMAGE:"
|
.SS "IMAGE:"
|
||||||
.TP
|
.TP
|
||||||
\fB\-\-loop\fR
|
\fB\-\-loop\fR
|
||||||
Redraw the image constantly until Ctrl+C is used. This fixes issues in some terminals emulators when using image mode.
|
Redraw the image constantly until Ctrl+C is used. This fixes issues
|
||||||
|
in some terminals emulators when using image mode.
|
||||||
.TP
|
.TP
|
||||||
\fB\-\-size\fR 00px | \fB\-\-size\fR 00%
|
\fB\-\-size\fR 00px | \fB\-\-size\fR 00%
|
||||||
How to size the image.
|
How to size the image.
|
||||||
|
@ -278,8 +286,9 @@ This only works with w3m.
|
||||||
.TP
|
.TP
|
||||||
\fB\-\-gap\fR num
|
\fB\-\-gap\fR num
|
||||||
Gap between image and text.
|
Gap between image and text.
|
||||||
.IP
|
.TP
|
||||||
NOTE: \fB\-\-gap\fR can take a negative value which will move the text closer to the left side.
|
NOTE: \fB\-\-gap\fR can take a negative value which will move the text
|
||||||
|
closer to the left side.
|
||||||
.TP
|
.TP
|
||||||
\fB\-\-clean\fR
|
\fB\-\-clean\fR
|
||||||
Delete cached files and thumbnails.
|
Delete cached files and thumbnails.
|
||||||
|
|
Reference in New Issue