-
Notifications
You must be signed in to change notification settings - Fork 30
/
ufetch-macos
executable file
·61 lines (52 loc) · 1.62 KB
/
ufetch-macos
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/bin/sh
#
# ufetch-macos - tiny system info for macos
## INFO
# user is already defined
host="$(hostname)"
os="$(sw_vers -productName) $(sw_vers -productVersion)"
kernel="$(uname -sr)"
uptime="$(uptime | awk -F, '{sub(".*up ",x,$1);print $1}' | sed -e 's/^[ \t]*//')"
if command -v pkgin &> /dev/null; then
packages="$(pkgin list | wc -l)"
elif command -v brew &> /dev/null; then
brew_packages="$(brew list | wc -l)"
cask_packages="$(brew cask list 2> /dev/null | wc -l)"
packages="$(( ${brew_packages} + ${cask_packages} ))"
elif command -v port &> /dev/null; then
packages="$(port installed | wc -l)"
else
packages='no package manager'
fi
packages="$(echo ${packages} | sed -e 's/^[ /t]*//')"
shell="$(basename ${SHELL})"
if [ -z "${WM}" ]; then
WM='Quartz Compositor'
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}" # labels
nc="${reset}${bold}" # user and hostname
ic="${reset}" # info
c0="${reset}" # first color
## OUTPUT
cat <<EOF
${c0} (/ ${nc}${USER}${ic}@${nc}${host}${reset}
${c0} .---__--. ${lc}OS: ${ic}${os}${reset}
${c0} / \ ${lc}KERNEL: ${ic}${kernel}${reset}
${c0} | / ${lc}UPTIME: ${ic}${uptime}${reset}
${c0} | \\_ ${lc}PACKAGES: ${ic}${packages}${reset}
${c0} \ / ${lc}SHELL: ${ic}${shell}${reset}
${c0} \`._.-._.\` ${lc}WM: ${ic}${WM}${reset}
EOF