#!/bin/sh # ufetch-armaan. My customized version of ufetch that doesn't print the ascii art, and doesn't spend time looking things up like the DE. Full credit goes to jschx (Joe Schillinger), the author of ufetch. ## INFO host="$(hostname)" os='Debian unstable' kernel="$(uname -sr)" uptime="$(uptime -p | cut -d ',' -f 1-2 | tail -c +4)" shell="zsh" ui="KDE Plasma" ## DEFINE COLORS bold='\033[1m' white='\033[0;37m' reset='\033[0m' # you can change these lc="${reset}${bold}${white}" # labels nc="${reset}${bold}${white}" # user and hostname ic="${reset}" # info ## OUTPUT printf "${nc}${USER}${ic}@${nc}${host}${reset} ${lc}OS ${ic}${os}${reset} ${lc}KERNEL ${ic}${kernel}${reset} ${lc}UPTIME ${ic}${uptime}${reset} ${lc}SHELL ${ic}${shell}${reset} ${lc}DE ${ic}${ui}${reset} "