2018-03-24 13:59:31 -05:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# ufetch-linux - tiny system info for linux
|
|
|
|
|
|
|
|
## INFO
|
|
|
|
|
|
|
|
# user is already defined
|
|
|
|
host="$(hostname)"
|
|
|
|
os='Linux' # I'd just like to interject for a moment...
|
|
|
|
kernel="$(uname -sr)"
|
2018-04-28 22:18:23 -03:00
|
|
|
uptime="$(uptime | awk -F, '{sub(".*up ",x,$1);print $1}' | sed -e 's/^[ \t]*//')"
|
2018-03-24 13:59:31 -05:00
|
|
|
shell="$(basename ${SHELL})"
|
2018-04-26 18:38:50 -05:00
|
|
|
|
2018-03-24 13:59:31 -05:00
|
|
|
if [ -z "${WM}" ]; then
|
2018-04-26 18:38:50 -05:00
|
|
|
if [ "${XDG_CURRENT_DESKTOP}" ]; then
|
2018-07-17 11:39:35 -03:00
|
|
|
envtype='DE:'
|
2018-04-26 18:38:50 -05:00
|
|
|
WM="${XDG_CURRENT_DESKTOP}"
|
|
|
|
elif [ "${DESKTOP_SESSION}" ]; then
|
2018-07-17 11:39:35 -03:00
|
|
|
envtype='DE:'
|
2018-04-26 18:38:50 -05:00
|
|
|
WM="${DESKTOP_SESSION}"
|
2018-07-17 11:39:35 -03:00
|
|
|
elif [ -f "${HOME}/.xinitrc" ]; then
|
|
|
|
envtype='WM:'
|
2018-04-26 18:38:50 -05:00
|
|
|
WM="$(tail -n 1 "${HOME}/.xinitrc" | cut -d ' ' -f 2)"
|
|
|
|
fi
|
|
|
|
else
|
2018-07-17 11:39:35 -03:00
|
|
|
envtype='WM:'
|
2018-03-24 13:59:31 -05:00
|
|
|
fi
|
|
|
|
|
|
|
|
## DEFINE COLORS
|
|
|
|
|
|
|
|
# probably don't change these
|
2018-07-18 20:19:43 -03:00
|
|
|
if [ -x "$(command -v tput)" ]; then
|
|
|
|
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)"
|
|
|
|
fi
|
2018-03-24 13:59:31 -05:00
|
|
|
|
|
|
|
# you can change these
|
2018-07-18 20:04:56 -03:00
|
|
|
lc="${reset}${bold}${black}" # labels
|
|
|
|
nc="${reset}${bold}${black}" # user and hostname
|
|
|
|
ic="${reset}${bold}${white}" # info
|
|
|
|
c0="${reset}${bold}${black}" # first color
|
2018-03-24 13:59:31 -05:00
|
|
|
c1="${reset}${white}" # second color
|
|
|
|
c2="${reset}${yellow}" # third color
|
|
|
|
|
|
|
|
## OUTPUT
|
|
|
|
|
|
|
|
cat <<EOF
|
|
|
|
|
|
|
|
${c0} ___ ${nc}${USER}${ic}@${nc}${host}${reset}
|
|
|
|
${c0} (${c1}.. ${c0}\ ${lc}OS: ${ic}${os}${reset}
|
|
|
|
${c0} (${c2}<> ${c0}| ${lc}KERNEL: ${ic}${kernel}${reset}
|
|
|
|
${c0} /${c1}/ \\ ${c0}\\ ${lc}UPTIME: ${ic}${uptime}${reset}
|
|
|
|
${c0} ( ${c1}| | ${c0}/| ${lc}SHELL: ${ic}${shell}${reset}
|
2018-07-17 11:39:35 -03:00
|
|
|
${c2} _${c0}/\\ ${c1}__)${c0}/${c2}_${c0}) ${lc}${envtype} ${ic}${WM}${reset}
|
2018-03-24 13:59:31 -05:00
|
|
|
${c2} \/${c0}-____${c2}\/${reset}
|
|
|
|
|
|
|
|
EOF
|