General: Swap to syntax folding
This commit is contained in:
parent
5dcc423bad
commit
e443656502
313
neofetch
313
neofetch
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
# set -x
|
# set -x
|
||||||
# vim: fdm=marker:noai:ts=4:sw=4:expandtab
|
# vim: noai:ts=4:sw=4:expandtab
|
||||||
#
|
#
|
||||||
# Neofetch: Simple system information script.
|
# Neofetch: Simple system information script.
|
||||||
# https://github.com/dylanaraps/neofetch
|
# https://github.com/dylanaraps/neofetch
|
||||||
|
@ -19,9 +19,7 @@ export LANG=C
|
||||||
# Set no case match.
|
# Set no case match.
|
||||||
shopt -s nocasematch
|
shopt -s nocasematch
|
||||||
|
|
||||||
# Gather Info {{{
|
# DETECT INFORMATION
|
||||||
|
|
||||||
# Operating System {{{
|
|
||||||
|
|
||||||
get_os() {
|
get_os() {
|
||||||
case "$(uname)" in
|
case "$(uname)" in
|
||||||
|
@ -36,10 +34,6 @@ get_os() {
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Model {{{
|
|
||||||
|
|
||||||
get_model() {
|
get_model() {
|
||||||
case "$os" in
|
case "$os" in
|
||||||
"Linux")
|
"Linux")
|
||||||
|
@ -118,17 +112,13 @@ get_model() {
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Distro {{{
|
|
||||||
|
|
||||||
get_distro() {
|
get_distro() {
|
||||||
[[ "$distro" ]] && return
|
[[ "$distro" ]] && return
|
||||||
|
|
||||||
case "$os" in
|
case "$os" in
|
||||||
"Linux" | "GNU")
|
"Linux" | "GNU")
|
||||||
if grep -q -F 'Microsoft' /proc/version >/dev/null || \
|
if grep -q -F 'Microsoft' /proc/version || \
|
||||||
grep -q -F 'Microsoft' /proc/sys/kernel/osrelease >/dev/null; then
|
grep -q -F 'Microsoft' /proc/sys/kernel/osrelease; then
|
||||||
case "$distro_shorthand" in
|
case "$distro_shorthand" in
|
||||||
"on") distro="$(lsb_release -sir) [Windows 10]" ;;
|
"on") distro="$(lsb_release -sir) [Windows 10]" ;;
|
||||||
"tiny") distro="Windows 10" ;;
|
"tiny") distro="Windows 10" ;;
|
||||||
|
@ -264,18 +254,10 @@ get_distro() {
|
||||||
ascii_distro="$(trim "$distro")"
|
ascii_distro="$(trim "$distro")"
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Title {{{
|
|
||||||
|
|
||||||
get_title() {
|
get_title() {
|
||||||
title="${USER:-$(whoami || printf "%s" "${HOME/*\/}")}@${HOSTNAME:-$(hostname)}"
|
title="${USER:-$(whoami || printf "%s" "${HOME/*\/}")}@${HOSTNAME:-$(hostname)}"
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Kernel {{{
|
|
||||||
|
|
||||||
get_kernel() {
|
get_kernel() {
|
||||||
case "$kernel_shorthand" in
|
case "$kernel_shorthand" in
|
||||||
"on") kernel_flags="-r" ;;
|
"on") kernel_flags="-r" ;;
|
||||||
|
@ -293,10 +275,6 @@ get_kernel() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Uptime {{{
|
|
||||||
|
|
||||||
get_uptime() {
|
get_uptime() {
|
||||||
# Since Haiku's uptime cannot be fetched in seconds, a case outside
|
# Since Haiku's uptime cannot be fetched in seconds, a case outside
|
||||||
# the usual case is needed
|
# the usual case is needed
|
||||||
|
@ -376,10 +354,6 @@ get_uptime() {
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Package Count {{{
|
|
||||||
|
|
||||||
get_packages() {
|
get_packages() {
|
||||||
case "$os" in
|
case "$os" in
|
||||||
"Linux" | "iPhone OS" | "Solaris" | "GNU")
|
"Linux" | "iPhone OS" | "Solaris" | "GNU")
|
||||||
|
@ -476,10 +450,6 @@ get_packages() {
|
||||||
(("$packages" == "0")) && unset packages
|
(("$packages" == "0")) && unset packages
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Shell {{{
|
|
||||||
|
|
||||||
get_shell() {
|
get_shell() {
|
||||||
case "$shell_path" in
|
case "$shell_path" in
|
||||||
"on") shell="$SHELL" ;;
|
"on") shell="$SHELL" ;;
|
||||||
|
@ -519,9 +489,6 @@ get_shell() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Desktop Environment {{{
|
|
||||||
get_de() {
|
get_de() {
|
||||||
case "$os" in
|
case "$os" in
|
||||||
"Mac OS X") de="Aqua" ;;
|
"Mac OS X") de="Aqua" ;;
|
||||||
|
@ -552,10 +519,6 @@ get_de() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Window Manager {{{
|
|
||||||
|
|
||||||
get_wm() {
|
get_wm() {
|
||||||
if [[ -n "$DISPLAY" && "$os" != "Mac OS X" ]]; then
|
if [[ -n "$DISPLAY" && "$os" != "Mac OS X" ]]; then
|
||||||
id="$(xprop -root -notype | awk '$1=="_NET_SUPPORTING_WM_CHECK:"{print $5}')"
|
id="$(xprop -root -notype | awk '$1=="_NET_SUPPORTING_WM_CHECK:"{print $5}')"
|
||||||
|
@ -581,10 +544,6 @@ get_wm() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Window Manager Theme {{{
|
|
||||||
|
|
||||||
get_wm_theme() {
|
get_wm_theme() {
|
||||||
[[ -z "$wm" ]] && get_wm
|
[[ -z "$wm" ]] && get_wm
|
||||||
[[ -z "$de" ]] && get_de
|
[[ -z "$de" ]] && get_de
|
||||||
|
@ -704,10 +663,6 @@ get_wm_theme() {
|
||||||
(("$version" >= 4)) && wm_theme="${wm_theme^}"
|
(("$version" >= 4)) && wm_theme="${wm_theme^}"
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# CPU {{{
|
|
||||||
|
|
||||||
get_cpu() {
|
get_cpu() {
|
||||||
# NetBSD emulates the linux /proc filesystem instead of using sysctl for hw
|
# NetBSD emulates the linux /proc filesystem instead of using sysctl for hw
|
||||||
# information so we have to use this block below which temporarily sets the
|
# information so we have to use this block below which temporarily sets the
|
||||||
|
@ -897,10 +852,6 @@ get_cpu() {
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# CPU Usage {{{
|
|
||||||
|
|
||||||
get_cpu_usage() {
|
get_cpu_usage() {
|
||||||
case "$os" in
|
case "$os" in
|
||||||
"Windows")
|
"Windows")
|
||||||
|
@ -934,10 +885,6 @@ get_cpu_usage() {
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# GPU {{{
|
|
||||||
|
|
||||||
get_gpu() {
|
get_gpu() {
|
||||||
case "$os" in
|
case "$os" in
|
||||||
"Linux" | "GNU")
|
"Linux" | "GNU")
|
||||||
|
@ -1058,10 +1005,6 @@ get_gpu() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Memory {{{
|
|
||||||
|
|
||||||
get_memory() {
|
get_memory() {
|
||||||
case "$os" in
|
case "$os" in
|
||||||
"Linux" | "Windows" | "GNU")
|
"Linux" | "Windows" | "GNU")
|
||||||
|
@ -1128,10 +1071,6 @@ get_memory() {
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Song {{{
|
|
||||||
|
|
||||||
get_song() {
|
get_song() {
|
||||||
# This is absurdly long.
|
# This is absurdly long.
|
||||||
player="$(ps x | awk '!(/awk|Helper|Cache/) && /mpd|cmus|mocp|spotify|Google Play|iTunes.app|rhythmbox|banshee|amarok|deadbeef|audacious/ {printf $5 " " $6; exit}')"
|
player="$(ps x | awk '!(/awk|Helper|Cache/) && /mpd|cmus|mocp|spotify|Google Play|iTunes.app|rhythmbox|banshee|amarok|deadbeef|audacious/ {printf $5 " " $6; exit}')"
|
||||||
|
@ -1246,10 +1185,6 @@ get_song() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Resolution {{{
|
|
||||||
|
|
||||||
get_resolution() {
|
get_resolution() {
|
||||||
case "$os" in
|
case "$os" in
|
||||||
"Linux" | "BSD" | "Solaris" | "GNU")
|
"Linux" | "BSD" | "Solaris" | "GNU")
|
||||||
|
@ -1309,10 +1244,6 @@ get_resolution() {
|
||||||
resolution="${resolution%,*}"
|
resolution="${resolution%,*}"
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Theme/Icons/Font {{{
|
|
||||||
|
|
||||||
get_style() {
|
get_style() {
|
||||||
# Fix weird output when the function
|
# Fix weird output when the function
|
||||||
# is run multiple times.
|
# is run multiple times.
|
||||||
|
@ -1484,10 +1415,6 @@ get_font() {
|
||||||
font="$theme"
|
font="$theme"
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Terminal Emulator {{{
|
|
||||||
|
|
||||||
get_term() {
|
get_term() {
|
||||||
# Check $PPID for terminal emulator.
|
# Check $PPID for terminal emulator.
|
||||||
case "$os" in
|
case "$os" in
|
||||||
|
@ -1532,10 +1459,6 @@ get_term() {
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Terminal Emulator Font {{{
|
|
||||||
|
|
||||||
get_term_font() {
|
get_term_font() {
|
||||||
[[ -z "$term" ]] && get_term
|
[[ -z "$term" ]] && get_term
|
||||||
|
|
||||||
|
@ -1587,10 +1510,6 @@ get_term_font() {
|
||||||
(("$version" >= 4)) && term_font="${term_font^}"
|
(("$version" >= 4)) && term_font="${term_font^}"
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Disk Usage {{{
|
|
||||||
|
|
||||||
get_disk() {
|
get_disk() {
|
||||||
# df flags
|
# df flags
|
||||||
case "$os" in
|
case "$os" in
|
||||||
|
@ -1652,10 +1571,6 @@ get_disk() {
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Battery Usage {{{
|
|
||||||
|
|
||||||
get_battery() {
|
get_battery() {
|
||||||
case "$os" in
|
case "$os" in
|
||||||
"Linux")
|
"Linux")
|
||||||
|
@ -1737,10 +1652,6 @@ get_battery() {
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# IP Address {{{
|
|
||||||
|
|
||||||
get_local_ip() {
|
get_local_ip() {
|
||||||
case "$os" in
|
case "$os" in
|
||||||
"Linux")
|
"Linux")
|
||||||
|
@ -1781,19 +1692,11 @@ get_public_ip() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Logged In Users {{{
|
|
||||||
|
|
||||||
get_users() {
|
get_users() {
|
||||||
users="$(who | awk '!seen[$1]++ {printf $1 ", "}')"
|
users="$(who | awk '!seen[$1]++ {printf $1 ", "}')"
|
||||||
users="${users%\,*}"
|
users="${users%\,*}"
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Birthday {{{
|
|
||||||
|
|
||||||
get_birthday() {
|
get_birthday() {
|
||||||
case "$os" in
|
case "$os" in
|
||||||
"Linux" | "GNU" | "iPhone OS")
|
"Linux" | "GNU" | "iPhone OS")
|
||||||
|
@ -1863,10 +1766,6 @@ get_birthday() {
|
||||||
birthday="${birthday/??:??*}"
|
birthday="${birthday/??:??*}"
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Terminal colors {{{
|
|
||||||
|
|
||||||
get_cols() {
|
get_cols() {
|
||||||
if [[ "$color_blocks" == "on" ]]; then
|
if [[ "$color_blocks" == "on" ]]; then
|
||||||
# Convert the width to space chars.
|
# Convert the width to space chars.
|
||||||
|
@ -1896,13 +1795,7 @@ get_cols() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
# IMAGES
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Images {{{
|
|
||||||
|
|
||||||
# Wallpaper {{{
|
|
||||||
|
|
||||||
get_wallpaper() {
|
get_wallpaper() {
|
||||||
case "$os" in
|
case "$os" in
|
||||||
|
@ -1956,10 +1849,6 @@ get_wallpaper() {
|
||||||
[[ -z "$img" ]] && err "Image: Wallpaper detection failed, falling back to ascii mode."
|
[[ -z "$img" ]] && err "Image: Wallpaper detection failed, falling back to ascii mode."
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Ascii {{{
|
|
||||||
|
|
||||||
get_ascii() {
|
get_ascii() {
|
||||||
if [[ ! -f "$ascii" || "$ascii" == "distro" ]]; then
|
if [[ ! -f "$ascii" || "$ascii" == "distro" ]]; then
|
||||||
# Error message
|
# Error message
|
||||||
|
@ -2032,10 +1921,6 @@ get_ascii() {
|
||||||
export LC_ALL=C
|
export LC_ALL=C
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Image {{{
|
|
||||||
|
|
||||||
get_image() {
|
get_image() {
|
||||||
# Fallback to ascii mode if imagemagick isn't installed.
|
# Fallback to ascii mode if imagemagick isn't installed.
|
||||||
type -p convert >/dev/null 2>&1 || image="ascii"
|
type -p convert >/dev/null 2>&1 || image="ascii"
|
||||||
|
@ -2236,11 +2121,6 @@ get_image() {
|
||||||
img="$thumbnail_dir/$imgname"
|
img="$thumbnail_dir/$imgname"
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Find w3m-img {{{
|
|
||||||
|
|
||||||
# Find w3mimgdisplay automatically
|
|
||||||
get_w3m_img_path() {
|
get_w3m_img_path() {
|
||||||
if [[ -x "$w3m_img_path" ]]; then
|
if [[ -x "$w3m_img_path" ]]; then
|
||||||
return
|
return
|
||||||
|
@ -2263,10 +2143,6 @@ get_w3m_img_path() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Display image {{{
|
|
||||||
|
|
||||||
display_image() {
|
display_image() {
|
||||||
if [[ "$image" != "ascii" ]]; then
|
if [[ "$image" != "ascii" ]]; then
|
||||||
case "$image_backend" in
|
case "$image_backend" in
|
||||||
|
@ -2289,10 +2165,6 @@ display_image() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Get image backend {{{
|
|
||||||
|
|
||||||
get_image_backend() {
|
get_image_backend() {
|
||||||
if [[ -n "$ITERM_PROFILE" ]]; then
|
if [[ -n "$ITERM_PROFILE" ]]; then
|
||||||
image_backend="iterm2"
|
image_backend="iterm2"
|
||||||
|
@ -2305,19 +2177,13 @@ get_image_backend() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
# SCREENSHOT
|
||||||
|
|
||||||
# Screenshot {{{
|
|
||||||
|
|
||||||
take_scrot() {
|
take_scrot() {
|
||||||
$scrot_cmd "${scrot_dir}${scrot_name}"
|
$scrot_cmd "${scrot_dir}${scrot_name}"
|
||||||
[[ "$scrot_upload" == "on" ]] && scrot_upload
|
[[ "$scrot_upload" == "on" ]] && scrot_upload
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Screenshot Upload {{{
|
|
||||||
|
|
||||||
scrot_upload() {
|
scrot_upload() {
|
||||||
if ! type -p curl >/dev/null 2>&1; then
|
if ! type -p curl >/dev/null 2>&1; then
|
||||||
printf "%s\n" "[!] Install curl to upload images"
|
printf "%s\n" "[!] Install curl to upload images"
|
||||||
|
@ -2343,13 +2209,18 @@ scrot_upload() {
|
||||||
printf "%s\n" "${image_url:-'[!] Image failed to upload'}"
|
printf "%s\n" "${image_url:-'[!] Image failed to upload'}"
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
scrot_args() {
|
||||||
|
scrot="on"
|
||||||
|
case "$2" in
|
||||||
|
"-"* | "") ;;
|
||||||
|
*)
|
||||||
|
scrot_name="${2##*/}"
|
||||||
|
scrot_dir="${2/$scrot_name}"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
# }}}
|
# TEXT FORMATTING
|
||||||
|
|
||||||
# Text Formatting {{{
|
|
||||||
|
|
||||||
# Info {{{
|
|
||||||
|
|
||||||
info() {
|
info() {
|
||||||
# $1 is the subtitle
|
# $1 is the subtitle
|
||||||
|
@ -2404,10 +2275,6 @@ info() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Prin {{{
|
|
||||||
|
|
||||||
prin() {
|
prin() {
|
||||||
string="${1//$'\033[0m'}${2:+: $2}"
|
string="${1//$'\033[0m'}${2:+: $2}"
|
||||||
|
|
||||||
|
@ -2439,10 +2306,6 @@ prin() {
|
||||||
prin=1
|
prin=1
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Underline {{{
|
|
||||||
|
|
||||||
get_underline() {
|
get_underline() {
|
||||||
if [[ "$underline_enabled" == "on" ]]; then
|
if [[ "$underline_enabled" == "on" ]]; then
|
||||||
underline="$(printf %"$length"s)"
|
underline="$(printf %"$length"s)"
|
||||||
|
@ -2450,10 +2313,6 @@ get_underline() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Colors {{{
|
|
||||||
|
|
||||||
colors() {
|
colors() {
|
||||||
# Reset colors/bold
|
# Reset colors/bold
|
||||||
reset="\033[0m"
|
reset="\033[0m"
|
||||||
|
@ -2688,10 +2547,6 @@ color() {
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Bold {{{
|
|
||||||
|
|
||||||
bold() {
|
bold() {
|
||||||
case "$ascii_bold" in
|
case "$ascii_bold" in
|
||||||
"on") ascii_bold="\033[1m" ;;
|
"on") ascii_bold="\033[1m" ;;
|
||||||
|
@ -2704,10 +2559,6 @@ bold() {
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Linebreak {{{
|
|
||||||
|
|
||||||
get_line_break() {
|
get_line_break() {
|
||||||
line_break=" "
|
line_break=" "
|
||||||
|
|
||||||
|
@ -2715,42 +2566,29 @@ get_line_break() {
|
||||||
info_height="$((info_height+=1))"
|
info_height="$((info_height+=1))"
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Trim whitespace {{{
|
|
||||||
|
|
||||||
# When a string is passed to 'echo' all trailing and leading
|
|
||||||
# whitespace is removed and inside the string multiple spaces are
|
|
||||||
# condensed into single spaces.
|
|
||||||
#
|
|
||||||
# The 'set -f/+f' is here so that 'echo' doesn't cause any expansion
|
|
||||||
# of special characters.
|
|
||||||
#
|
|
||||||
# The whitespace trim doesn't work with multiline strings so we use
|
|
||||||
# '${1//[[:space:]]/ }' to remove newlines beofre we trim the whitespace.
|
|
||||||
trim() {
|
trim() {
|
||||||
|
# When a string is passed to 'echo' all trailing and leading
|
||||||
|
# whitespace is removed and inside the string multiple spaces are
|
||||||
|
# condensed into single spaces.
|
||||||
|
#
|
||||||
|
# The 'set -f/+f' is here so that 'echo' doesn't cause any expansion
|
||||||
|
# of special characters.
|
||||||
|
#
|
||||||
|
# The whitespace trim doesn't work with multiline strings so we use
|
||||||
|
# '${1//[[:space:]]/ }' to remove newlines beofre we trim the whitespace.
|
||||||
|
|
||||||
set -f
|
set -f
|
||||||
builtin echo -E ${1//[[:space:]]/ }
|
builtin echo -E ${1//[[:space:]]/ }
|
||||||
set +f
|
set +f
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
# OTHER
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Other {{{
|
|
||||||
|
|
||||||
# Error {{{
|
|
||||||
|
|
||||||
err() {
|
err() {
|
||||||
err+="$(color 1)[!]\033[0m $1
|
err+="$(color 1)[!]\033[0m $1
|
||||||
"
|
"
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Check for old flags {{{
|
|
||||||
|
|
||||||
check_old_flags() {
|
check_old_flags() {
|
||||||
[[ -n "$osx_buildversion" ]] && err "Config: \$osx_buildversion is deprecated, use \$distro_shorthand instead."
|
[[ -n "$osx_buildversion" ]] && err "Config: \$osx_buildversion is deprecated, use \$distro_shorthand instead."
|
||||||
[[ -n "$osx_codename" ]] && err "Config: \$osx_codename is deprecated, use \$distro_shorthand instead."
|
[[ -n "$osx_codename" ]] && err "Config: \$osx_codename is deprecated, use \$distro_shorthand instead."
|
||||||
|
@ -2758,10 +2596,6 @@ check_old_flags() {
|
||||||
[[ "$cpu_cores" == "on" ]] && err "Config: \$cpu_cores='on' is deprecated, use \$cpu_cores='logical|physical|off' instead."
|
[[ "$cpu_cores" == "on" ]] && err "Config: \$cpu_cores='on' is deprecated, use \$cpu_cores='logical|physical|off' instead."
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Get script directory {{{
|
|
||||||
|
|
||||||
get_script_dir() {
|
get_script_dir() {
|
||||||
[[ "$script_dir" ]] && return
|
[[ "$script_dir" ]] && return
|
||||||
|
|
||||||
|
@ -2780,10 +2614,6 @@ get_script_dir() {
|
||||||
script_dir="$(pwd -P)"
|
script_dir="$(pwd -P)"
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Source default config {{{
|
|
||||||
|
|
||||||
get_default_config() {
|
get_default_config() {
|
||||||
if [[ -f "/usr/share/neofetch/config" ]]; then
|
if [[ -f "/usr/share/neofetch/config" ]]; then
|
||||||
default_config="/usr/share/neofetch/config"
|
default_config="/usr/share/neofetch/config"
|
||||||
|
@ -2807,10 +2637,6 @@ get_default_config() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Source config {{{
|
|
||||||
|
|
||||||
get_user_config() {
|
get_user_config() {
|
||||||
# Check $config_file
|
# Check $config_file
|
||||||
if [[ -f "$config_file" ]]; then
|
if [[ -f "$config_file" ]]; then
|
||||||
|
@ -2849,10 +2675,6 @@ get_user_config() {
|
||||||
err "Config: Sourced user config ($config_file)"
|
err "Config: Sourced user config ($config_file)"
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Progress bars {{{
|
|
||||||
|
|
||||||
bar() {
|
bar() {
|
||||||
# Get the values
|
# Get the values
|
||||||
elapsed="$(($1 * progress_length / $2))"
|
elapsed="$(($1 * progress_length / $2))"
|
||||||
|
@ -2874,19 +2696,11 @@ bar() {
|
||||||
printf "%b\n" "${bar}${info_color}"
|
printf "%b\n" "${bar}${info_color}"
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Cache {{{
|
|
||||||
|
|
||||||
cache() {
|
cache() {
|
||||||
mkdir -p "$3/neofetch"
|
mkdir -p "$3/neofetch"
|
||||||
echo "${1/*-}=\"$2\"" > "$3/neofetch/${1/*-}"
|
echo "${1/*-}=\"$2\"" > "$3/neofetch/${1/*-}"
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# KDE config directory {{{
|
|
||||||
|
|
||||||
kde_config_dir() {
|
kde_config_dir() {
|
||||||
if [[ "$kde_config_dir" ]]; then
|
if [[ "$kde_config_dir" ]]; then
|
||||||
return
|
return
|
||||||
|
@ -2905,20 +2719,18 @@ kde_config_dir() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Terminal info {{{
|
|
||||||
#
|
|
||||||
# Parse terminal config files to get
|
|
||||||
# info about padding. Due to how w3m-img
|
|
||||||
# works padding around the terminal throws
|
|
||||||
# off the cursor placement calculation in
|
|
||||||
# specific terminals.
|
|
||||||
#
|
|
||||||
# Note: This issue only seems to affect
|
|
||||||
# URxvt.
|
|
||||||
|
|
||||||
get_term_padding() {
|
get_term_padding() {
|
||||||
|
# Terminal info
|
||||||
|
#
|
||||||
|
# Parse terminal config files to get
|
||||||
|
# info about padding. Due to how w3m-img
|
||||||
|
# works padding around the terminal throws
|
||||||
|
# off the cursor placement calculation in
|
||||||
|
# specific terminals.
|
||||||
|
#
|
||||||
|
# Note: This issue only seems to affect
|
||||||
|
# URxvt.
|
||||||
|
|
||||||
[[ -z "$term" ]] && get_term
|
[[ -z "$term" ]] && get_term
|
||||||
|
|
||||||
case "$term" in
|
case "$term" in
|
||||||
|
@ -2929,10 +2741,6 @@ get_term_padding() {
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Dynamic prompt location {{{
|
|
||||||
|
|
||||||
dynamic_prompt() {
|
dynamic_prompt() {
|
||||||
# Calculate image height in terminal cells.
|
# Calculate image height in terminal cells.
|
||||||
if [[ "$image" != "ascii" ]]; then
|
if [[ "$image" != "ascii" ]]; then
|
||||||
|
@ -2960,29 +2768,12 @@ dynamic_prompt() {
|
||||||
printf "\n\n\n\n"
|
printf "\n\n\n\n"
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Scrot args {{{
|
|
||||||
|
|
||||||
scrot_args() {
|
|
||||||
scrot="on"
|
|
||||||
case "$2" in
|
|
||||||
"-"* | "") ;;
|
|
||||||
*)
|
|
||||||
scrot_name="${2##*/}"
|
|
||||||
scrot_dir="${2/$scrot_name}"
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
}
|
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Deprecated functions {{{
|
|
||||||
# Neofetch 2.0 changed the names of a few variables.
|
|
||||||
# This function adds backwards compatibility for the
|
|
||||||
# old variable names.
|
|
||||||
|
|
||||||
old_functions() {
|
old_functions() {
|
||||||
|
# Deprecated functions
|
||||||
|
# Neofetch 2.0 changed the names of a few variables.
|
||||||
|
# This function adds backwards compatibility for the
|
||||||
|
# old variable names.
|
||||||
|
|
||||||
if type printinfo >/dev/null 2>&1; then
|
if type printinfo >/dev/null 2>&1; then
|
||||||
print_info() { printinfo ; }
|
print_info() { printinfo ; }
|
||||||
get_wmtheme() { get_wm_theme; wmtheme="$wm_theme"; }
|
get_wmtheme() { get_wm_theme; wmtheme="$wm_theme"; }
|
||||||
|
@ -2993,11 +2784,7 @@ old_functions() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
# FINISH uP
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Usage {{{
|
|
||||||
|
|
||||||
usage() { printf "%s" "
|
usage() { printf "%s" "
|
||||||
NEOFETCH
|
NEOFETCH
|
||||||
|
@ -3123,10 +2910,6 @@ usage() { printf "%s" "
|
||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Args {{{
|
|
||||||
|
|
||||||
get_args() {
|
get_args() {
|
||||||
# Check the commandline flags early for '--config none/off'
|
# Check the commandline flags early for '--config none/off'
|
||||||
case "$@" in
|
case "$@" in
|
||||||
|
@ -3295,10 +3078,6 @@ get_args() {
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
||||||
# Call Functions and Finish Up {{{
|
|
||||||
|
|
||||||
main() {
|
main() {
|
||||||
get_os
|
get_os
|
||||||
get_default_config 2>/dev/null
|
get_default_config 2>/dev/null
|
||||||
|
@ -3367,5 +3146,3 @@ main() {
|
||||||
}
|
}
|
||||||
|
|
||||||
main "$@"
|
main "$@"
|
||||||
|
|
||||||
# }}}
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.TH NEOFETCH "1" "November 2016" "1.9.1" "User Commands"
|
.TH NEOFETCH "1" "November 2016" "2.0" "User Commands"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
neofetch \- simple system information script
|
neofetch \- simple system information script
|
||||||
|
|
||||||
|
|
Reference in New Issue