#!/bin/sh # # ufetch-debian - tiny system info for debian ## INFO # user is already defined host="$(hostname)" 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 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)" # you can change these 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 ## OUTPUT cat <