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]*//')"
|
2018-04-22 15:35:53 -07:00
|
|
|
packages="$(ls -d /var/db/pkg/* | wc -l | sed -e 's/^[ \t]*//')"
|
2019-01-14 15:26:24 +13:00
|
|
|
shell="$(basename "$SHELL")"
|
2018-04-26 18:38:50 -05:00
|
|
|
|
2017-05-06 00:38:23 -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:'
|
2016-04-19 09:38:42 -05:00
|
|
|
fi
|
|
|
|
|
|
|
|
## DEFINE COLORS
|
|
|
|
|
2017-05-06 00:38:23 -05:00
|
|
|
# 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
|
2016-04-19 09:38:42 -05:00
|
|
|
|
|
|
|
# you can change these
|
2019-01-14 15:47:41 +13:00
|
|
|
lc="${reset}${bold}${yellow}" # labels
|
|
|
|
nc="${reset}${bold}${yellow}" # user and hostname
|
|
|
|
ic="${reset}${bold}${white}" # info
|
|
|
|
c0="${reset}${yellow}" # first color
|
|
|
|
c1="${reset}${white}" # second color
|
|
|
|
c2="${reset}${bold}${yellow}" # third color
|
2016-04-19 09:38:42 -05:00
|
|
|
|
|
|
|
|
|
|
|
## OUTPUT
|
|
|
|
|
|
|
|
cat <<EOF
|
|
|
|
|
2018-04-21 00:09:45 -05:00
|
|
|
${c0} _____ ${nc}${USER}${ic}@${nc}${host}${reset}
|
|
|
|
${c0} \- -/ ${lc}OS: ${ic}${os}${reset}
|
|
|
|
${c0} \_/ \ ${lc}KERNEL: ${ic}${kernel}${reset}
|
|
|
|
${c0} | ${c1}O O ${c0}| ${lc}UPTIME: ${ic}${uptime}${reset}
|
|
|
|
${c0} |_ ${c2}< ${c0}) ${c2}3 ${c0}) ${lc}PACKAGES: ${ic}${packages}${reset}
|
|
|
|
${c0} / \ / ${lc}SHELL: ${ic}${shell}${reset}
|
2018-07-17 11:39:35 -03:00
|
|
|
${c0} /-_____-\ ${lc}${envtype} ${ic}${WM}${reset}
|
2016-04-19 09:38:42 -05:00
|
|
|
|
|
|
|
EOF
|