forked from RomaniukVadim/hack_scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathufetch
More file actions
49 lines (40 loc) · 1.34 KB
/
Copy pathufetch
File metadata and controls
49 lines (40 loc) · 1.34 KB
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
#!/bin/sh
#
# ufetch - tiny system info for crux
#
## INFO
# user is already defined
HOST="$(hostname)"
OS="$(crux)"
KERNEL="$(uname -sr)"
UPTIME="$(uptime -p | sed s:"up "::)"
PACKAGES="$(pkginfo -i | wc -l)"
# shell is already defined
WM="$(tail -n 1 "${HOME}/.xinitrc" | cut -d " " -f2)"
## DEFINE COLORS
# probably don't change these
bc="$(tput bold)" # bold
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
rc="$(tput sgr0)" # reset
# you can change these
lc="${bc}${c6}" # labels
nc="${bc}${c6}" # user and hostname
tc="${bc}${c7}" # text
pc="${c6}" # penguin
## OUTPUT
cat <<EOF
${pc} ___${rc} ${nc}${USER}${rc}${tc}@${rc}${nc}${HOST}${rc}
${pc} (${rc}${c7}.·${rc} ${pc}|${rc} ${lc}OS:${rc} ${tc}${OS}${rc}
${pc} (${rc}${c3}<>${rc} ${pc}|${rc} ${lc}KERNEL:${rc} ${tc}${KERNEL}${rc}
${pc} /${rc} ${c7}__${rc} ${pc}\\${rc} ${lc}UPTIME:${rc} ${tc}${UPTIME}${rc}
${pc} (${rc} ${c7}/ \\${rc} ${pc}/|${rc} ${lc}PACKAGES:${rc} ${tc}${PACKAGES}${rc}
${c3} _${pc}/\\${rc} ${c7}__)${rc}${pc}/${rc}${c3}_${rc}${pc})${rc} ${lc}SHELL:${rc} ${tc}${SHELL}${rc}
${c3} \/${pc}-____${rc}${c3}\/${rc} ${lc}WM:${rc} ${tc}${WM}${rc}
EOF