42 lines
1 KiB
Bash
Executable file
42 lines
1 KiB
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# ufetch-aux - tiny system info for a/ux
|
|
|
|
## INFO
|
|
|
|
# user is already defined
|
|
host=`hostname`
|
|
os=`uname -sr`
|
|
kernel=`uname -v`
|
|
uptime=`uptime | awk '{print $3" "$4}' | tr -d ,`
|
|
packages='unknown'
|
|
shell=`basename "${SHELL}"`
|
|
|
|
## UI DETECTION
|
|
|
|
ui='unknown'
|
|
uitype='UI'
|
|
|
|
## DEFINE COLORS
|
|
|
|
# probably don't change these
|
|
bold=`tput bold 2> /dev/null`
|
|
reset=`tput sgr0 2> /dev/null`
|
|
|
|
# you can change these
|
|
lc="${reset}${bold}" # labels
|
|
nc="${reset}${bold}" # user and hostname
|
|
ic="${reset}" # info
|
|
c0="${reset}" # first color
|
|
|
|
## OUTPUT
|
|
|
|
echo "${c0} _${reset}
|
|
${c0} (/ ${nc}${USER}${ic}@${nc}${host}${reset}
|
|
${c0} .---__--. ${lc}OS: ${ic}${os}${reset}
|
|
${c0} / \ ${lc}KERNEL: ${ic}${kernel}${reset}
|
|
${c0} | / ${lc}PACKAGES: ${ic}${packages}${reset}
|
|
${c0} | \\_ ${lc}UPTIME: ${ic}${uptime}${reset}
|
|
${c0} \ / ${lc}SHELL: ${ic}${shell}${reset}
|
|
${c0} \`._.-._.\` ${lc}${uitype}: ${ic}${ui}${reset}
|
|
"
|