ufetch/ufetch-openbsd

55 lines
1.4 KiB
Text
Raw Normal View History

2016-04-19 09:38:42 -05:00
#!/bin/sh
#
# ufetch-openbsd - tiny system info for openbsd
#
## INFO
# user is already defined
2017-05-06 00:38:23 -05:00
host="$(hostname)"
os="$(uname -sr)"
kernel="$(uname -v)"
uptime="$(uptime | awk -F, '{sub(".*up ",x,$1);print $1}' | sed -e 's/^[ \t]*//')"
packages="$(pkg_info -A | wc -l | sed -e 's/^[ \t]*//')"
shell="$(basename ${SHELL})"
if [ -z "${WM}" ]; then
WM="$(tail -n 1 "${HOME}/.xinitrc" | cut -d ' ' -f 2)"
2016-04-19 09:38:42 -05:00
fi
## DEFINE COLORS
2017-05-06 00:38:23 -05:00
# probably don't change these
bc="$(tput bold)" # bold
c0="$(tput setaf 0)" # black
c1="$(tput setaf 1)" # red
c2="$(tput setaf 2)" # green
c3="$(tput setaf 3)" # yellow
c4="$(tput setaf 4)" # blue
c5="$(tput setaf 5)" # magenta
c6="$(tput setaf 6)" # cyan
c7="$(tput setaf 7)" # white
rc="$(tput sgr0)" # reset
2016-04-19 09:38:42 -05:00
# you can change these
2017-05-06 00:38:23 -05:00
lc="${rc}${bc}${c3}" # labels
nc="${rc}${bc}${c3}" # user and hostname
ic="${rc}${bc}${c7}" # info
fc="${rc}${c3}" # first color
sc="${rc}${c7}" # second color
tc="${rc}${bc}${c3}" # third color
2016-04-19 09:38:42 -05:00
## OUTPUT
cat <<EOF
2017-05-06 00:38:23 -05:00
${fc} _____ ${nc}${USER}${ic}@${nc}${host}${rc}
${fc} \- -/ ${lc}OS: ${ic}${os}${rc}
${fc} \_/ \ ${lc}KERNEL: ${ic}${kernel}${rc}
${fc} | ${sc}O O${fc} | ${lc}UPTIME: ${ic}${uptime}${rc}
${fc} |_ ${tc}< ${fc}) ${tc}3 ${fc}) ${lc}PACKAGES: ${ic}${packages}${rc}
${fc} / \ / ${lc}SHELL: ${ic}${shell}${rc}
${fc} /-_____-\ ${lc}WM: ${ic}${WM}${rc}
2016-04-19 09:38:42 -05:00
EOF