ufetch/ufetch-debian

52 lines
1.2 KiB
Text
Raw Normal View History

2017-05-06 00:37:27 -05:00
#!/bin/sh
#
# ufetch-debian - tiny system info for debian
## INFO
# user is already defined
2018-03-24 14:01:24 -05:00
host="$(hostname)"
2017-05-06 00:37:27 -05:00
os='Debian'
kernel="$(uname -sr)"
uptime="$(uptime -p | sed 's/up //')"
packages="$(dpkg -l | wc -l)"
shell="$(basename ${SHELL})"
if [ -z "${WM}" ]; then
WM="$(tail -n 1 "${HOME}/.xinitrc" | cut -d ' ' -f 2)"
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)"
2017-05-06 00:37:27 -05:00
# you can change these
2018-03-24 14:01:24 -05:00
lc="${reset}${bold}${red}" # labels
nc="${reset}${bold}${red}" # user and hostname
ic="${reset}${bold}${white}" # info
c0="${reset}${bold}${red}" # first color
c1="${reset}${red}" # second color
2017-05-06 00:37:27 -05:00
## OUTPUT
cat <<EOF
2018-03-24 14:01:24 -05:00
${c0} _____ ${lc}${USER}${ic}@${lc}${host}${reset}
${c0} / __ \\ ${lc}OS: ${ic}${os}${reset}
${c0} | / | ${lc}KERNEL: ${ic}${kernel}${reset}
${c0} | ${c1}\\___- ${lc}UPTIME: ${ic}${uptime}${reset}
${c1} -_ ${lc}PACKAGES: ${ic}${packages}${reset}
${c1} --_ ${lc}SHELL: ${ic}${shell}${reset}
${c0} ${lc}WM: ${ic}${WM}${reset}
2017-05-06 00:37:27 -05:00
EOF