ufetch/ufetch-ubuntu
2018-08-06 20:25:54 -05:00

64 lines
1.5 KiB
Bash
Executable file

#!/bin/sh
#
# ufetch-ubuntu - tiny system info for ubuntu
## INFO
# user is already defined
host="$(hostname)"
os="$(lsb_release -ds)"
kernel="$(uname -sr)"
uptime="$(uptime -p | sed 's/up //')"
packages="$(dpkg -l | wc -l)"
shell="$(basename ${SHELL})"
if [ -z "${WM}" ]; then
if [ "${XDG_CURRENT_DESKTOP}" ]; then
envtype='DE:'
WM="${XDG_CURRENT_DESKTOP}"
elif [ "${DESKTOP_SESSION}" ]; then
envtype='DE:'
WM="${DESKTOP_SESSION}"
elif [ -f "${HOME}/.xinitrc" ]; then
envtype='WM:'
WM="$(tail -n 1 "${HOME}/.xinitrc" | cut -d ' ' -f 2)"
fi
else
envtype='WM:'
fi
## DEFINE COLORS
# probably don't change these
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
# you can change these
lc="${reset}${bold}${yellow}" # labels
nc="${reset}${bold}${yellow}" # user and hostname
ic="${reset}${bold}${white}" # info
c0="${reset}${bold}${yellow}" # first color
## OUTPUT
cat <<EOF
${c0} _ ${lc}${USER}${ic}@${lc}${host}${reset}
${c0} ---(_) ${lc}OS: ${ic}${os}${reset}
${c0} _/ --- \\ ${lc}KERNEL: ${ic}${kernel}${reset}
${c0} (_) | | ${lc}UPTIME: ${ic}${uptime}${reset}
${c0} \\ --- _/ ${lc}PACKAGES: ${ic}${packages}${reset}
${c0} ---(_) ${lc}SHELL: ${ic}${shell}${reset}
${c0} ${lc}${envtype} ${ic}${WM}${reset}
EOF