2015-11-22 09:43:55 -05:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2018-03-24 14:01:24 -05:00
|
|
|
# ufetch-void - tiny system info for void
|
2015-11-22 09:43:55 -05:00
|
|
|
|
|
|
|
## INFO
|
|
|
|
|
|
|
|
# user is already defined
|
2018-03-24 14:01:24 -05:00
|
|
|
host="$(hostname)"
|
2017-05-06 00:38:23 -05:00
|
|
|
os='Void Linux'
|
|
|
|
kernel="$(uname -sr)"
|
|
|
|
uptime="$(uptime -p | sed 's/up //')"
|
|
|
|
packages="$(xbps-query -l | wc -l)"
|
|
|
|
shell="$(basename ${SHELL})"
|
|
|
|
if [ -z "${WM}" ]; then
|
|
|
|
WM="$(tail -n 1 "${HOME}/.xinitrc" | cut -d ' ' -f 2)"
|
2015-11-22 09:43:55 -05:00
|
|
|
fi
|
|
|
|
|
|
|
|
## DEFINE COLORS
|
|
|
|
|
|
|
|
# probably don't change these
|
2018-03-24 14:01:24 -05:00
|
|
|
bold="$(tput bold)"
|
|
|
|
black="$(tput setaf 0)"
|
|
|
|
red="$(tput setaf 1)"
|
|
|
|
green="$(tput setaf 2)"
|
|
|
|
yellow="$(tput setaf 3)"
|
|
|
|
blue="$(tput setaf 4)"
|
|
|
|
magenta="$(tput setaf 5)"
|
|
|
|
cyan="$(tput setaf 6)"
|
|
|
|
white="$(tput setaf 7)"
|
|
|
|
reset="$(tput sgr0)"
|
2015-11-22 09:43:55 -05:00
|
|
|
|
|
|
|
# you can change these
|
2018-03-24 14:01:24 -05:00
|
|
|
lc="${reset}${bold}${green}" # labels
|
|
|
|
nc="${reset}${bold}${green}" # user and hostname
|
|
|
|
ic="${reset}${bold}${white}" # info
|
|
|
|
c0="${reset}${bold}${green}" # first color
|
|
|
|
c1="${reset}${green}" # second color
|
2015-11-22 09:43:55 -05:00
|
|
|
|
|
|
|
## OUTPUT
|
|
|
|
|
|
|
|
cat <<EOF
|
|
|
|
|
2018-03-24 14:01:24 -05:00
|
|
|
${c0} _______ ${nc}${USER}${ic}@${nc}${host}${reset}
|
|
|
|
${c1} _ ${c0}\______ \ ${lc}OS: ${ic}${os}${reset}
|
|
|
|
${c1} | \ ${c0}___ \ | ${lc}KERNEL: ${ic}${kernel}${reset}
|
|
|
|
${c1} | | ${c0}/ \ | | ${lc}UPTIME: ${ic}${uptime}${reset}
|
|
|
|
${c1} | | ${c0}\___/ | | ${lc}PACKAGES: ${ic}${packages}${reset}
|
|
|
|
${c1} | \______ ${c0}\_| ${lc}SHELL: ${ic}${shell}${reset}
|
|
|
|
${c1} \_______\ ${lc}WM: ${ic}${WM}${reset}
|
2015-11-22 09:43:55 -05:00
|
|
|
|
|
|
|
EOF
|