2017-03-06 09:58:12 -05:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# ufetch-nixos - tiny system info for nixos
|
|
|
|
#
|
|
|
|
|
|
|
|
## INFO
|
|
|
|
|
|
|
|
# user is already defined
|
2017-05-06 00:37:45 -05:00
|
|
|
host="$(hostname)"
|
|
|
|
os="$(nixos-version)"
|
|
|
|
kernel="$(uname -sr)"
|
|
|
|
uptime="$(uptime -p | sed 's/up //')"
|
2017-05-06 00:58:39 -05:00
|
|
|
packages="$(ls -d -1 /nix/store/ | wc -l)"
|
2017-05-06 00:37:45 -05:00
|
|
|
shell="$(basename ${SHELL})"
|
|
|
|
if [ -z "${WM}" ]; then
|
|
|
|
WM="$(tail -n 1 "${HOME}/.xinitrc" | cut -d ' ' -f 2)"
|
2017-03-06 09:58:12 -05:00
|
|
|
fi
|
|
|
|
|
|
|
|
## DEFINE COLORS
|
|
|
|
|
|
|
|
# probably don't change these
|
2017-05-06 00:37:45 -05:00
|
|
|
bc="$(tput bold)" # bold
|
2017-03-06 09:58:12 -05:00
|
|
|
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
|
2017-05-06 00:37:45 -05:00
|
|
|
rc="$(tput sgr0)" # reset
|
2017-03-06 09:58:12 -05:00
|
|
|
|
|
|
|
# you can change these
|
2017-05-06 00:37:45 -05:00
|
|
|
lc="${rc}${bc}${c4}" # labels
|
|
|
|
nc="${rc}${bc}${c4}" # user and hostname
|
|
|
|
ic="${rc}${bc}${c7}" # info
|
|
|
|
fc="${rc}${c4}" # first color
|
|
|
|
sc="${rc}${bc}${c4}" # second color
|
2017-03-06 09:58:12 -05:00
|
|
|
|
|
|
|
## OUTPUT
|
|
|
|
|
2017-05-06 00:37:45 -05:00
|
|
|
sed 's/\\/\\\\/g' <<EOF
|
2017-03-06 09:58:12 -05:00
|
|
|
|
2017-05-06 00:37:45 -05:00
|
|
|
${fc} \\ ${sc}\\ // ${nc}${USER}${ic}@${rc}${nc}${host}${rc}
|
|
|
|
${fc} ==\\__${sc}\\/ ${fc}// ${lc}OS: ${ic}${os}${rc}
|
|
|
|
${sc} // \\${fc}// ${lc}KERNEL: ${ic}${kernel}${rc}
|
|
|
|
${sc} ==// ${fc}//== ${lc}UPTIME: ${ic}${uptime}${rc}
|
|
|
|
${sc} //${fc}\\${sc}___${fc}// ${lc}PACKAGES: ${ic}${packages}${rc}
|
|
|
|
${sc} // ${fc}/\\ ${sc}\\== ${lc}SHELL: ${ic}${shell}${rc}
|
|
|
|
${fc} // \\ ${sc}\\ ${lc}WM: ${ic}${WM}${rc}
|
2017-03-06 09:58:12 -05:00
|
|
|
|
|
|
|
EOF
|