irix: kernel information

This commit is contained in:
Dylan Araps 2020-03-09 23:41:13 +02:00
parent 542b6af284
commit 6558b34254
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E

9
pfetch
View File

@ -25,7 +25,7 @@ log() {
# Construct the information string.
out="[3${PF_COL1-4};1m${name}"
out="$out${PF_SEP}[$((info_length-${#name}))C"
out="$out[3${PF_COL2-7}m${info}"
out="$out[3${PF_COL2-7}m${info:-?}"
}
get_title() {
@ -216,7 +216,12 @@ get_kernel() {
case $os in
# Don't print kernel output on some systems as the
# OS name includes it.
*BSD*|Haiku|Minix|IRIX) ;;
*BSD*|Haiku|Minix) ;;
IRIX)
kernel=$(uname -vR)
kernel=${kernel#* }
;;
*)
# '$kernel' is the cached output of 'uname -r'.